Albert
Albert

Reputation: 316

How to upload phonegap build app in google playstore?

Whenever I am trying to upload app which has formed by phonegap build method (Which have only config.xml and index.html file) getting an error

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.

You uploaded an APK that was signed in debug mode. You need to sign your APK in release mode. Learn more about signing.

My search found the solution that to make debuggable="false" in androidmanifest.xml. But the thing is that there is no such file in the case of phonegap build method. How can I fix this?

Upvotes: 2

Views: 4436

Answers (1)

user3255670
user3255670

Reputation:

No. The solution you found is wrong. This is how you do it.

In the future, read the official documentation.

If you are confused, ask question at the official Phonegap Build forum or the Nitobi forum.

The instructions you need for signing are at this link: Android Signing for Google Play

The final step is, which is not documented very well, is here:
Builing a release version for build.phonegap.com

Upvotes: 5

Related Questions