umerk44
umerk44

Reputation: 2817

Build corona project for google-play-store

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.

  1. Your APK has been signed with multiple certificates. Please only sign it with one certificate and upload it again.

  2. Your APK needs to have the package name com.gmail.mustafacorona.tnt.

  3. You need to use a different version code for your APK because you already have one with version code 1"

Upvotes: 0

Views: 637

Answers (2)

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

Jordan Schuetz
Jordan Schuetz

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

Related Questions