1

I followed the instructions here to redirect a user from android app to play store to install an apk now I want to redirect the user again to the app when the apk is successfully installed on the device. Is it possible?

Community
  • 1
  • 1
hariszaman
  • 8,202
  • 2
  • 40
  • 59
  • You can check if the app is installed in onresume() and then start the app using http://stackoverflow.com/a/7596063/1025599 – Nachi Jul 31 '15 at 10:25

1 Answers1

1

I would say that, if it is possible, it would be achieved through a service, that runs in the background, that would detect the presence of the installed apk (the new app).

Nick D.
  • 47
  • 2