Reputation: 13747
I have two apps and I want one app to change preferences in another app.
Is it possible? If so, then how?
Upvotes: 1
Views: 477
Reputation: 22527
You could use Content Providers. Put your settings in a database so that the other application can read.
Upvotes: 1
Reputation: 173
It means that you need some passage between two applications. If A application provides content provider, B application can access that content provider and change values in that provider. Have a look this article http://developer.android.com/guide/topics/providers/content-providers.html
Upvotes: 2