NadeemYousaf
NadeemYousaf

Reputation: 233

How we make Signed APK for google play store?

I have completed my android app and now wanted to publish it on android market. I have an account on google play store for android apps. But when tried to upload my apk file it gives error.

this is error details

I have read many tutorials but fail to upload.

How to sign an android apk file

Upvotes: 6

Views: 8670

Answers (3)

Piyush
Piyush

Reputation: 18933

enter image description hereIf you are trying to export your signed apk then you should go with.

Project -> Export -> Export Signed Apk -> Go to Wizard -> Create New Keystore -> Create Password(Remember it) -> Fill Info and Give alias name for your app -> Sign your app ->Finally Save it or finish it.

You have to use Zip align tool which is allocated in tools folder of SDK.

You should use this way in your command prompt at where your zip align tool path is required.

zipalign [-f] [-v] <alignment> infile.apk outfile.apk

Where infile.apk is your source file which is signed apk and outfile.apk is your destination file which is output file.. And you must use that signed output apk file and upload it on Google play.

Upvotes: 1

user3243163
user3243163

Reputation: 408

Have a look at to this developer link,

http://developer.android.com/guide/publishing/app-signing.html

  • open your project in eclips
  • press right-mouse, tools (android tools?) - > export signed application (apk?)
  • go trough the wizzard:
  • make a new key-store. remember that password
  • sign your app
  • save it etc.

Upvotes: 1

Digvesh Patel
Digvesh Patel

Reputation: 6533

First Right Click On project And Click On export enter image description here

And Then Follow Instruction

enter image description here

Upvotes: 2

Related Questions