Can two app with shared UserID access each other resources like drawables or strings?
Can they access each other assets?
Can they enable or disable components of the other?
If any of these is possible please explain how it must be done.
I searched a lot but couldn't find any example about userId sharing.
The Shared User ID mechanism of the Android system allows multiple apps to share the same Linux user ID and Android permissions, access files each other, and even run in the same process. These apps need to have the same signature and Shared User ID cannot be changed after installation.
To take the user from one activity to another, your app must use an Intent to define your app's "intent" to do something. When you pass an Intent to the system with a method such as startActivity() , the system uses the Intent to identify and start the appropriate app component.
It's possible to arrange for two apps to share the same Linux user ID, in which case they are able to access each other's files. To conserve system resources, apps with the same user ID can also arrange to run in the same Linux process and share the same VM. The apps must also be signed with the same certificate.
Currently, Android 11 apps that request the "Query_All_Packages" permission can see the full list of apps you have stored on your device. Google has now updated its Developer Programme Policy, restricting which apps are allowed to use the permission.
You can use android:sharedUserId
in AndroidManifest.xml to let your application share the same user id with another application.
android:sharedUserId
The name of a Linux user ID that will be shared with other applications. By default, Android assigns each application its own unique user ID. However, if this attribute is set to the same value for two or more applications, they will all share the same ID — provided that they are also signed by the same certificate. Application with the same user ID can access each other's data and, if desired, run in the same process.
Notice that they need to be signed by the same certificate.
Two applications share the same user id may access each other's resource.
For example:
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.shareusertesta" android:versionCode="1" android:versionName="1.0" android:sharedUserId="com.example">
Then we can init a new context of com.example
by:
Context friendContext = this.createPackageContext( "com.example",Context.CONTEXT_IGNORE_SECURITY);
And access some resources of that application:
friendContext.getResources().getString(id); friendContext.getResources().getDrawable(id); friendContext.registerReceiver(...);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With