Reputation: 24181
i need some informations about how to install an app from google play store, and install another app automatically with it , example of Big Launcher
, when you download & install the app, another app called Big Dailer
is installed automatically , and when you uninstall the Big Launcher
, the app Big Dailer
is uninstalled too ( automatically ) , do you have any idea about how to do that ? because i have two applications which depends on each other and i want to install the second one automatically while installing the first one.
any help will be greatly appreciated.
Upvotes: 0
Views: 324
Reputation: 6319
You can not automatically install a second app.
This is the system playing 'tricks' on you. You can define, in your manifest file, a second main launcher activity, with its own launcher icon.
So basically, you download 1 app with 2 entry points. From there, you can choose to handle that as 2 different apps. So from ActivityLaunch1 you can access Activities 1 to 5, and from ActivityLaunch2 you can access Activities 6 to 10 per example.
For the user, this looks as if you've got 2 apps at once.
Upvotes: 2