android - Sudden drop in the reviews on Google Play Store .Not able to get the exact reason -


enter image description herei had 3.7 version of app in production on play store , have rollout update 3.7.1 version after update there sudden drop in reviews 50% 60%. after googling unable find exact cause. appreciated.

thanks in advance

i'm using following code app , working fine, hope can you.

uri uri = uri.parse("market://details?id=" + context.getpackagename()); intent gotomarket = new intent(intent.action_view, uri); // count play market backstack, after pressing button, // taken our application, need add following flags intent.

gotomarket.addflags(intent.flag_activity_no_history | intent.flag_activity_clear_when_task_reset | intent.flag_activity_multiple_task);

try { startactivity(gotomarket); } catch (activitynotfoundexception e) { startactivity(new intent(intent.action_view, uri.parse("http://play.google.com/store/apps/details?id=" + context.getpackagename()))); }

this launch play store app & user can promptly review on there. make sure, you're popping correctly rate task.


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -