views:

172

answers:

2

I would like to distribute my app to a group of beta testers but would like to watermark specific version (APK?) to each tester. Is there a way to do so?

A: 

Just define a int version in your activity and build your apk.

change the int for each build...

If your app is using an server api to retrieve information, make sure so add this version to all api-requests... if version-number is out of scope, make a response that closes the app.

PHP_Jedi
+2  A: 

In your manifest attribute set the android:versionCode to a different number for each build. Easy and visible from settings.

jqpubliq