In my app there is a rating button. If the user activates this button, the user will be forwarded to the Google Play website to give a review.
market://details?id=<package name>
Now I uploaded my app to other app stores. And they want, that I must change the Link from the button to e.g.
https://www.otherAppStore.com/android?p=<package name>
How can I solve this problem? I'm now thinking to make different versions (AndroidManifest.xml). For e.g. for google:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
...
android:versionCode="1"
android:versionName="1.0.0.1" >
and for the other app store:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
...
android:versionCode="1"
android:versionName="1.0.0.2" >
Looks not professional?