Reputation: 2817
I build my app for android using corona simulator and then i sign that apk with this process but when i try to publish it on Google play i got this
"1. You uploaded a debuggable APK. For security reasons you need to disable debugging before it can be published in Google Play. Learn more about debuggable APKs.
Your APK has been signed with multiple certificates. Please only sign it with one certificate and upload it again.
Your APK needs to have the package name com.gmail.mustafacorona.tnt.
You need to use a different version code for your APK because you already have one with version code 1"
Upvotes: 0
Views: 637
Reputation: 1
Maybe the error 1 is occurring because your "build.settings" file contains the following line:
neverStripDebugInfo = true
Try changing it to:
neverStripDebugInfo = false
Upvotes: 0
Reputation: 1036
I made a great forum topic over here regarding this topic:
http://forums.coronalabs.com/topic/7111-signing-android-applications-in-3-easy-steps/
That should help you out. Basically you create your keystore, and build your application using the keystore.
Upvotes: 1