Keep one apk file in another apk file?

It won't be an apk rather you can create your another Application as Android Library You can keep your Project as Library and can put in or use into Another Applications.

It won't be an . Apk rather you can create your another Application as Android Library. You can keep your Project as Library and can put in or use into Another Applications.

You can also check this thread.

If I use android library's can we reduce the performance of the application. – Shashank Reddy yesterday.

Installing isn't too hard. You can put the second . Apk file in the assets or raw resources folder of your first app.

Then, when the first app runs, it can copy the . Apk file to a temporary location and install the second app with something like this (lifted from this thread): Intent intent = new Intent(Intent. ACTION_VIEW); intent.

SetDataAndType(Uri. FromFile( new File(Environment. GetExternalStorageDirectory() + "/download/" + "app.

Apk")), "application/vnd.android. Package-archive"); startActivity(intent); Uninstalling is a little more complicated. You can't actually do what you want directly; you'll probably need a third app.

It can register itself to receive ACTION_PACKAGE_REMOVED broadcasts and when it receives a broadcast that the first app is being removed, can remove the second app. See this blog post for more details, including some settings that might be needed on the phone for non-market apps.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions