I've a requirement that for my two signed app with same certificates are installed in android device. If there is any thing change app A, app B should be notify for same and vise-versa. Is it possible to get it done anyways?
Thanks
I've a requirement that for my two signed app with same certificates are installed in android device. If there is any thing change app A, app B should be notify for same and vise-versa. Is it possible to get it done anyways?
Thanks
You could study a bit and use Android Content Provider and Android Content Resolver
Every app package is run as a Linux process several app packages may run as part of one process Use android:sharedUserId in manifest of 2 apps to run them as part of the same larger application
Both apps must be signed with the same certificate App2 wants to read data from app1 so it needs installation information of App1
Get the Package Manager using getPackageManager() of Context class Package Manager contains various kinds of information related to the application packages that are currently installed on the device Call ApplicationInfo
getApplicationInfo(String packageName,int flags)
of package manager to retrieve all of the information about app 1