Issue
Actually my app is nearly so far, that some people can test it. Now I want to a version number for the app. Where should I put the the version.properties or is there a built-in mechanism?
Thanks
Solution
Inside your Manifest you should have this:
android:versionCode="1"
android:versionName="1.0"
Answered By - Ahmad
Answer Checked By - Dawn Plyler (JavaFixing Volunteer)