Reputation: 1074
I am creating the keystore for my android app using the export wizard. I specified the destination folder and name to create the keystore and then i filled the required fileds like password,alias,exp time,etc. Then wizard promts me to browse for the Enter destination for APK file. My question is, I need to export the unsigned apk or I need to copy the .apk file form the bin directory of the project?*
Edit
Simply put, from where should i browse the .apk file ?
Upvotes: 2
Views: 352
Reputation: 6899
No you want to sign the apk.If you signed means it will be updated if you done any changes in
future.And if you given default destination of keystore it will be in eclipse location.For eg:
your eclipse location is in C drive. C/eclipse/your keystore and destination of apk you want
to choose the path location.
And remember first publish will not be a problem, in second edition if u done any changes and uploaded. dont forget to change in manifest.
android:versionCode="1"
android:versionName="1.0" it will be initial release.
Next release, change the versioncode and name.
android:versionCode="2"
android:versionName="1.1"
Remember version name should be in decimal and version code should be in integer number.
Upvotes: 1
Reputation: 9507
You not need to browse apk. It ask for where you need to save your sign apk.
You need to provide destination path for sign apk
at that step of sign apk. It is you sign apk which you have to use for publishing on google play store.
Upvotes: 1