Search code examples
androidprocesspackage-name

Possibilities of these two apps running on same Process Resources


What if I install an App having Package Name: com.test.

And then install another app having package name: com.test.deeper

Are there any possibilities of these two apps running on same Process Resources?


Solution

  • Two apps can run on same process but in your case it won't be the case.

    Check the link

    You just need to assign same values to android:shareUserID and android:process in both applications and sign them with same certificate.

    http://developer.android.com/guide/topics/manifest/manifest-element.html - shareUserId property http://developer.android.com/guide/topics/manifest/application-element.html - process property http://developer.android.com/guide/components/processes-and-threads.html - general description

    you can also check for shared resources between apps