advancedSmsManager
advancedSmsManager copied to clipboard
Advanced SmsManager is avery handy library for sending sms for single and two sim-card phones with many options.
what is the main function of the app,I can't understand your description.
SmsHandler.builder(context, "+989120000000") .withCarrierNameFilter("MCI") .withCustomDialogForSendSms(R.layout.my_sms_dialog) .withCustomDialogForChoseSim(R.layout.simcard_choosing_dialog) .needToShowSendSmsDialog(false) //Here is the logcat pointing .build().sendSms(DIALOG_MESSAGE, SMS_BODY, new MySmsManager.SMSManagerCallBack() { @Override public void afterSuccessfulSMS(int smsId) { } @Override public void afterDelivered(int smsId) { }...
2 13:25:06.247 31577-31577/com.androstock.smsapp E/AndroidRuntime: FATAL EXCEPTION: main Process: com.androstock.smsapp, PID: 31577 java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String android.content.Context.getPackageName()' on a null object reference at android.widget.Toast.(Toast.java:103) at android.widget.Toast.makeText(Toast.java:256) at ir.mtajik.android.advancedsmsmanager.view.SendSmsViewImpl.showMessage(SendSmsViewImpl.java:116)...