Reputation: 819
Is there any way I can release one apk file which will install two different apks ?
I have 2 different apks and I want that when the customer installs one installation from Google play then 2 apks will be installed.
Any idea ?
Upvotes: 0
Views: 109
Reputation: 69396
Install the first APK and then launch an Intent to install the second. Use
market://details?id=<package_name>
as data.
There's no way of installing apps without user's consent so Play will be opened and the user can accept and proceed.
Upvotes: 1