I have an application that use resource inside second application, and by some condition the resources inside second application should be changed, and now I want to unpack the second .apk
file inside my main application and change its resource, then repack it and finally install it.
All two applications is mine and created with eClipse LUNA
.
How can I do this inside the device?
You cannot, I mean if they are two separate applications, because each application runs in its own process.
That said you can use android:sharedUserId in your manifest.xml, both apps should e signed with the same certificate
It will be something like the following
App 1
App 2
And use the following in app1
What do you mean by