Generate .apk file from Eclipse

2

Do you know if it is possible to generate the .apk executable from android to upload to the Play Store, from eclipse, having the java source code?

    
asked by Carlos 10.02.2017 в 12:20
source

2 answers

2

Generating an .APK in eclipse is possible through

Android Tools > Export Signed Application Package or Export _Unsigned Application Package (if it does not require your .apk signed with the Keystore).

To upload to the Play Store it is necessary to sign the application with your Keystore so I suggest using the Export Signed Application Package option, this will require the Keystore and its password.

    
answered by 10.02.2017 / 16:24
source
0

Yes, it is possible. You must right click on your project:

Android > Android Tools > Export Signed Application Package

You will need to generate a KeyStore that will ask you during the process, it is simple but the generated file saves it because when generating a new version to be able to update in Play Store you will need to export with that KeyStore.

    
answered by 10.02.2017 в 12:37