I want an app that should always be running on phone. On dialing *1234#, it should come to foreground, that is visible. But when I dial the num, I get message- "Connection problem or invalid MMI code". I have copied and edited the code from internet. There are 3 pieces of code and 1 manifest file attached. MyBroadCastReciever is for bringing the screen to forward on dialing number. InstallmentApp and InstallmentService ensure that process is not killable. MainActivity shows what appears on screen. I thought I have not checked for permission. So tried doing so. But where shall I call ActivityCompat.requestPermissions and where shall I put onRequestPermissionsResult, it need an activity and not a broadcast receiver. I placed it in mainActivity, but main activity should be created only when permission is there. So, I don't expect it should do the work. I tried placing there and failed. What should I do?
CODE:
public class MainActivity extends AppCompatActivity {
static final int REQUEST = 112;
Context mContext = this;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
switch (requestCode) {
case REQUEST: {
if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
//do here
Toast.makeText(mContext, "The app was allowed to read your store.", Toast.LENGTH_LONG).show();
} else {
Toast.makeText(mContext, "The app was not allowed to read your store.", Toast.LENGTH_LONG).show();
}
}
}
}
}
public class MyBroadCastReciever extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
final int REQUEST = 112;
if (Build.VERSION.SDK_INT >= 23) {
String[] PERMISSIONS = {android.Manifest.permission.PROCESS_OUTGOING_CALLS};
if (!hasPermissions(context, PERMISSIONS)) {
ActivityCompat.requestPermissions((Activity) context, PERMISSIONS, REQUEST);
//imagePath.setText("SDK>23,has no permission");
dialer(context);
} else {
//do here
//imagePath.setText("SDK>23,has no permission");
dialer(context);
}
} else {
//do here
//imagePath.setText("SDK<23");
dialer(context);
}
}
private void dialer(Context context) {
String ourCode = "*1234#";
String dialedNumber = getResultData();
if (dialedNumber.equals(ourCode)) {
// My app will bring up, so cancel the dialer broadcast
setResultData(null);
//Intent to launch MainActivity
Intent intent_to_mainActivity = new Intent(context, MainActivity.class);
context.startActivity(intent_to_mainActivity);
}
}
private static boolean hasPermissions(Context context, String... Permissions) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M && context != null && permissions != null) {
for (String permission : permissions) {
if (ActivityCompat.checkSelfPermission(context, permission) != PackageManager.PERMISSION_GRANTED) {
return false;
}
}
}
return true;
}
}
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
switch (requestCode) {
case REQUEST: {
if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
//do here
Toast.makeText(mContext, "The app was allowed to read your store.", Toast.LENGTH_LONG).show();
} else {
Toast.makeText(mContext, "The app was not allowed to read your store.", Toast.LENGTH_LONG).show();
}
}
}
}
}
public class InstallmentApp extends Application {
@Override
public void onCreate() {
super.onCreate();
startService(new Intent(this, InstallmentService.class));
}
}
public class InstallmentService extends Service {
private static final int NOTIF_ID = 1;
private static final String NOTIF_CHANNEL_ID = "Channel_Id";
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
@RequiresApi(api = Build.VERSION_CODES.O)
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
startForeground();
return super.onStartCommand(intent, flags, startId);
}
@RequiresApi(api = Build.VERSION_CODES.O)
private void startForeground() {
Intent notificationIntent = new Intent(this, MainActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,
notificationIntent, 0);
NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
String channelId = getString(R.string.app_name);
NotificationChannel notificationChannel = new NotificationChannel(channelId, channelId, NotificationManager.IMPORTANCE_DEFAULT);
notificationChannel.setDescription(channelId);
notificationChannel.setSound(null, null);
notificationManager.createNotificationChannel(notificationChannel);
Notification notification = new Notification.Builder(this, channelId)
.setContentTitle(getString(R.string.app_name))
.setContentText("Connected through SDL")
.setSmallIcon(R.drawable.ic_launcher_foreground)
.setPriority(Notification.PRIORITY_DEFAULT)
.build();
startForeground(NOTIF_ID, notification);
}
}
Manifest file:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myinstallments">
<application
android:allowBackup="true"
android:name=".InstallmentApp"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.MyInstallments">
<service android:name=".InstallmentService"/>
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name=".MyBroadCastReciever">
<intent-filter>
<action android:name="android.intent.action.NEW_OUTGOING_CALL" />
</intent-filter>
</receiver>
</application>
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
<uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS" />
</manifest>
CODE: