question

Joseph joshua avatar image
Joseph joshua asked

Android app is crashing when clients trying to write a review

In our android application, our app is crashing when i try to review. Here is my code. Intent rateIntent = new Intent("android.intent.action.VIEW", Uri.parse("amzn://android?p=com.blaaa.step")); please help me out to fix this. Thanks
fire tablet
10 |5000

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

Sujoy@Amazon avatar image
Sujoy@Amazon answered
Hi Keshav, Thank you for writing to us. You should do something like, Uri uri = Uri.parse("amzn://apps/android?p=com.blaaa.step"); Intent goToAppstore = new Intent(Intent.ACTION_VIEW,uri); goToAppstore.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(goToAppstore); Details about deep liking : https://developer.amazon.com/sdk/in-app-purchasing/sample-code/deeplink.html
10 |5000

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.