Skip to main content

Tips for Developer: Rating

An app needs good rating for better place in store (App Store, Play Store, ...),. So as a developer, you should use some tricks to increase rating. Here's some short tips for that;

Tip 1: Good App With Great UI/UX


First thing first, app should have to be useful and understandable for users. Besides it should have a modern UI and a simple but functional UX.

For example there are a lot of Note taking apps. They all do same simple thing. But some note apps used by millions and some only dream about it :) Different factors impress usage. But personally, I want a note taking or tasker app to be simple as a paper and help me like an assistant.

Tip 2: Do Not Force To Rate


It is a mistake. When users open an app, definitely they want to use it for something. Instead, if app shows a dialog for rate like "Hey, do you like my app, go to store an give me 5 start.", users hate it. In most case, (s)he will delete it, because app is supposed to do thier main objectives, not asking for something from users.

In classic scenario, When (s)he likes your app, gives a feedback with a lot of stars. There's no harm to add a button for your store link. Or you can always use a non-intrusive method like this;



Nicolas Pomepuy's open source library which i contribute let you to ask rate in simple and elegant way.

Tip 3: Reduce Poor Review


If a user give you a bad review with one star, it shows you need to change something. For to prevent bad reviews, you should put a button for feedback button like all Google Apps has. In that way an unhappy user can comminucate with you before ruining your store rating.
In Play Store, you should reply that bad reviews after you fix a problem or add some features. Users always happy to see a working developer :)

Tip 4: Take Advantage Of Happy Users


If a user happy with your app, you should provide a way to share their experience in the social media. Use Twitter, Google plus, Facebook or others to reach more potential users.
There is a difference between a developer says "Check out my awesome app" and a user says "Check out this awesome app". Try to use power of social medias but not to much.

Creating an apps is a easy thing to do but creating great apps needs more time and effort.

Comments

Popular posts from this blog

How to change position of MyLocationButton on new Map API v2 - 2

In my previuos post[1], i mention a workaround for changing buttons on Google Map which we use with google services. It is good to know they listen developers and make their products more development friendly. (I hope it goes like that way all the time and all the product lines of Google) Now we have a method for setting padding of map. It is add padding to useful area of map. We can see full screen map but with padding we can use prefered area of it. It is good for overlay action bar and other things on map view. [ 2] They write a blog and take a video about it. Read blog and watch video if you are using google map in your app :) [3] And finally, They add this method because of this issue. That means, if you find a bug or want extra feature from and api, write to google via this issue tracking system. [1] http://blog.kozaxinan.com/2013/08/how-to-change-position-of.html [2] https://developers.google.com/maps/documentation/android/map#map_padding [3] http://googlegeodeve

How to set alarm to show a notification at future date with AlarmManager?

Lets assume you want to do a job a future time or show a notification at a selected time. AlarmManager can help to send an intent in future time. First we need to select date, Lets create a date in 2050, Calendar calendar = Calendar. getInstance () ; calendar.set(Calendar. YEAR , 2050 ) ; Date date = calendar.getTime() ; For showing notification we need a service. public class AlarmReceiver extends Service { public AlarmReceiver() { } @Override public IBinder onBind (Intent intent) { } } Add service to Manifest.xml <service android :name= "com.kozaxinan.example.alarm.AlarmReceiver" android :enabled= "true" android :exported= "true" > </service> We will modify AlarmReceiver for sending notification. But first we need to register a alarm. AlarmManager alarmManager = (AlarmManager) getSystemService( ALARM_SERVICE ) ; Intent intent = new Intent( this, AlarmReceiver. class ) ; intent.putExtra( &q

Finally I released my First Game; The Red Button

Finally I released  "The Red Button Don't Touch It" . My First Game for Android. Game has only one objective; be fast enough to react and click the green button. Playstore Link :  https://play.google.com/store/apps/details?id=com.kozaxinan.redbutton Please don't hesitate to give me feedback!