有効なユーザーIDを使用してAndroid HelloMonkeyを数日間変更して電話をかけようとしています。電話をかけると、「電話をかけるときにアカウントSIDをnullにすることはできません」というエラーが表示されます私のコードは次のようになります
public void connect(String phoneNumber) {
Map<String, String> parameters = new HashMap<String, String>();
parameters.put("PhoneNumber", phoneNumber);
if (device == null){
Log.w("", "Failed device == null");
}else{
Log.w("", "device != null");
}
connection = device.connect(parameters, null /* ConnectionListener */);
if (connection == null)
Log.w(TAG, "Failed to create new connection");
}
null が見つかりません
助けてください。前もって感謝します