Opening My Application From Google Play App Crashes On Exit
I have option to open my app Google Play page inside my app. When clicking open button in Google Play My app launches again. (From Splash screen) When I am exiting my app it crashe
Solution 1:
use this code..
Uri uri = Uri.parse(https://play.google.com/store);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
Post a Comment for "Opening My Application From Google Play App Crashes On Exit"