-1

my app work well on my device when I run it but when I try to make signed apk to publish my app I can't find it . I tried a lot of times and searched in my project folder. How can I find my signed apk???

Zoe
  • 27,060
  • 21
  • 118
  • 148
Ahmed
  • 37
  • 3

2 Answers2

1

In android studio
1) Click on 'Build' -> 'Generate Signed APK'
2) Fill keystore path ,alias, password...
3) Click on Next
4) You can see 'APK Destiantion Folder' field. Set your destination path as desktop
5) Click on Finish.
You can find your .apk file in desktop.

Jaymin Soni
  • 116
  • 5
0

You need following things in order to produce signed apk file

  • The keystore file which has the extension .jks and its password.
  • The android project which has no compile-time errors.

The following steps to be followed.

  1. Choose Build>Generate Signed apk option in the android studio.

  1. Select the keystore file and enter its password.
  2. Click Next then Finish.
  3. After a successful build, you will get a link to the folder containing output file.

If you want to navigate manually, your signed apk file will be in

Project Folder -> app -> release -> app-release.apk

Sanket Bhat
  • 340
  • 3
  • 16