Need possible options for "App wrapping " in Android -
i want know "app wrapping" options available in android. requirement have control on 2-3 apks, wrapped together. apks communicate each other data sharing not third-party apps.
any options in android wrapping apks.
use same certificate sign them (no jars, or library references needed, unless app structured way):
application modularity – android system allows applications signed same certificate run in same process, if applications requests, system treats them single application. in way can deploy application in modules, , users can update each of modules independently if needed.
then use contentprovider flag android:exported=false
in manifest make sure outside applications don't have access it.
Comments
Post a Comment