I have two android applications. The apks are Hello.apk and Fonts.apk
I would like to use the fonts that i store in fonts.apk to be used in Hello.apk
The reason is that i want to add newer fonts to an existing application so that whenever new fonts are required i just need to install newer fonts.apk. I have configuration in Hello.apk about which fonts to use.
Any help appreciated.
I think that what you need is a ContentProvider: https://developer.android.com/guide/topics/providers/content-providers.html
Then you would have Fonts.apk expose the ContentProvider, and Hello.apk use it