Hi guys this is just my first post,
is it possible to access an activity which is in Phone.apk in a non-rooted phone?
I’ve tried something like this
Intent i = new Intent(Intent.ACTION_MAIN);
i.setClassName(“com.android.phone”, “com.android.phone.PhoneApp”);
startActivity(i);
but my app always stops unexpectedly.
There is no activity named
com.android.phone.PhoneAppin the Android firmware, let alone in the Android SDK.Moreover, you should not be attempting to start activities in the
com.androidpackage, as they are not part of the Android SDK and may or may not exist on any given device or Android version.