Reputation: 25
i have two or more applications. one of them is the base application and the others are just extensions(add-on). i want when user install base Application and after that user install other extensions of applications, some features be enable in my base app. something like Go launcher App. if u want to use go launcher themes you should install themes and you will allow to use themes in go launcher app. is it possible in android? if it is what do u suggest? thanks for any suggestion.
Upvotes: 0
Views: 90
Reputation: 2814
Use Content Provider to achieve your task.
This example contains two applications like parent and child. it performs data sharing, database in parent application and child can access parent database using content provider.
Refer This Link: http://www.compiletimeerror.com/2013/12/content-provider-in-android.html#.V4STZjVazDc
Upvotes: 1