Rate this app dialog not working
I had incorporated the rate this app dialog box into my app last year. It was working perfectly for sometimes but later it stopped showing the rate this dialog box. Any idea what can be the reasons for this.
I was using the following condition in oncreate method ;
// Custom condition: 3 days and 5 launches RateThisApp.Config config = new RateThisApp.Config(3, 5); RateThisApp.init(config);
Do we need to use the following in Oncreate method;
RateThisApp.onCreate(this);
I had the same problem after forgetting to include RateThisApp.onCreate(this);
and after you need to call this in onresume or onpostresume RateThisApp.showRateDialogIfNeeded(this);
thanks @mourjan , it's working now!