How to create a Signed APK on the latest version of Android Studio

I just Installed the latest version of Android Studio and I noticed that I can't create a signed APK, it just create a file named "app-release.apk" which can't be installed(In the phone).

Upvotes: 0

Views: 77

Answers (2)

Sadegh
Sadegh

Reputation: 2679

4 months age, when I tried to generate signed apk with android studio build > Generate Signed APK, google play said this is not signed apk. So here is my solution if the first one still is not working.

  1. Open terminal in your project path
  2. ./gradlew --gui

It should open a window for you

  1. In Task Tree tab, click on arrow key beside your project name, to expand it.
  2. then inside there, right click on assembleRelease, and select Execute.

Upvotes: 0

Kevin Gilles
Kevin Gilles

Reputation: 485

Here is what you have to do :

  1. Build > Generate Signed APK
  2. Deal with the keystore steps.
  3. Obtain your signed Apk

In case those steps are new to you, here is a link that helped me understanding them

Have a good day !

Upvotes: 1

Related Questions