Has anyone use this tool to increase user review (an important condition for appstore search engine)? I wonder if we can implemented this tool with Gideros
Just going to add this, i "think" i found a minor cockroach.
I just added this to the "AppRater:step()"
table.save(self.data, "|D|apprater")
I tested by setting it for 3 runs, but each time it retreived "data.timesUsed", but never saved it back, as both conditions were not true (times/days), so it never went to the "rate()" function to then save the "data".
This works for me now
function AppRater:step()
self.data.timesUsed = self.data.timesUsed + 1if self.data.timesUsed >= self.data.timesToWait then
self:rate()elselocal now =os.timer()local days =math.floor((((now - self.data.startDate)/60)/60)/24)--print(days)if days >= self.data.daysToWait then
self:rate()endendtable.save(self.data, "|D|apprater")end
Added the bit where it says "-- ADDED this bit --"....sorta obvious.
But if you dont set toRate to false, it will go to the rate page and still ask everytime you start the app again. so i set it to false and saved the data.
Comments
If you see the game GoNinja, it is used in that.
Author of Learn Lua for iOS Game Development from Apress ( http://www.apress.com/9781430246626 )
Cool Vizify Profile at https://www.vizify.com/oz-apps
Website: http://www.castlegateinteractive.com
https://play.google.com/store/apps/developer?id=Castlegate+Interactive
http://appcodingeasy.com/Gideros-Mobile/AppRater-for-Gideros
Of course needs more testing
Likes: mysps, thanhquan1512, Disciple
Ultimate Games on Appstore
Ultimate Games on Google Play
Just going to add this, i "think" i found a minor cockroach.
I just added this to the "AppRater:step()"
This works for me now
http://artleeapps.com/
Bubble Adventure - Colors
But if you dont set toRate to false, it will go to the rate page and still ask everytime you start the app again. so i set it to false and saved the data.
Likes: vitalitymobile
http://artleeapps.com/
Bubble Adventure - Colors
Likes: vitalitymobile