Android-RateThisApp icon indicating copy to clipboard operation
Android-RateThisApp copied to clipboard

Rate this app dialog not working

Open ghost opened this issue 8 years ago • 2 comments

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);

ghost avatar Mar 14 '18 22:03 ghost

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);

mourjan avatar May 23 '18 07:05 mourjan

thanks @mourjan , it's working now!

jewom avatar Nov 24 '18 10:11 jewom