I have this situation where i have to start an activity from my mainActivity. But I want this new activity to be started as a new process(With new process ID). Is it possible to achieve this in android.
Any help is appreciated.
I have this situation where i have to start an activity from my mainActivity.
Share
Just put android:process=”:ProcessName” for your Activity in AndroidManifest.xml
In this case “YourActivity” will be run on other process called “YourProcessName”.