Reputation: 3231
I am developing for an application currently. But when i will finish my app developement and i create .apk, should i sign it or make it unsigned while giving my app to my client for testing on their own devices?? He should not be able to put this apk on market as an author/ He should not distribute without my permission.
Any suggestions are welcome. Thanks.
Upvotes: 4
Views: 5419
Reputation: 5773
Steps:
In Android Studio Generate Build APK
Upvotes: 1
Reputation: 103
file-> export click on android select "export android application" specify the path
Upvotes: 0
Reputation: 28162
You can sign with your debug key which in windows resides in: username/.android/debug.keystore
Password is: android
Sec password is: android
Edit: But if the person has some knowledge he can just resign it with another key, you can't really protect yourself against this (afaik).
Upvotes: 1
Reputation: 29199
you don't need to sign using debug key, android sdk does it automatically, and android applications signed by debug key is not possible to upload on market, you can get apk file in bin directry of your project.
Upvotes: 0