Is it possible to start an intent using open link from “control” card or some other option? I want to do something which will work like Activity Starter. Something like this:
Intent i = new Intent(android.provider.Settings.ACTION_APPLICATION_DETAILS_SETTINGS, Uri.parse("package:" + BuildConfig.APPLICATION_ID));
startActivity(i);
Sample output:
It can even work only for Android. I just need to open it from my app.
Can someone help me with that?