How to Generate Unsigned (Shareable) Apk in Android Studio? Last Updated : 20 Oct, 2021 Comments Improve Suggest changes Like Article Like Report Unsigned Apk, as the name suggests it means it is not signed by any Keystore. A Keystore is basically a binary file that contains a set of private keys. Every App that we install using the Google Play App Store needs to be signed with a Keystore. The signed apk is simply the unsigned apk that has been signed via the JDK jarsigner tool. If you want to generate a signed apk then refer to How to Generate Signed Apk in Android Studio? Why do We Need to Generate an Unsigned Apk? When developers are developing the android application for end-users, they need to test the application for which they share that apk with their friends or client to get the feedback and the improvement need to be done. It is somewhat lengthy and difficult to generate a signed apk every time to share as that requires a Keystore(Unique). That is why most of the time we prefer to generate unsigned apk as that is even easy to be generated. Difference Between Signed and Unsigned ApkS.No Signed Apk Unsigned Apk 1 Signed APK it's signed with your own key which is guarded by youUnsigned APK is actually signed by debugging key. 2 It is a somewhat lengthy process to generate Signed ApkIt is Easy to Generate Unsigned Apk3 It is Secure.It is not Secure4 Generally Available on Play storeOnly the Developer has unsigned Apk.5 It is generated when we are releasing our App.It is generating when we are testing our app.Generating Unsigned (Sharable) Apk in Android Studio Step 1: Build your project then go to the Build > Build Bundle(s)/APK(s) > Build APK(s) as shown in the below image. Step 2: Then, You will see that Gradle is building. Wait for 3 to 4 minutes to complete the build. Step 3: After the Gradle Build Running Completed Then In the Right Bottom Side, you will see something like this as shown in the below image. Step 4: Then Click on locate and you will see your Apk File as (app-debug.apk) and Now You can share this Apk file with anyone. Comment More infoAdvertise with us Next Article How to Generate Unsigned (Shareable) Apk in Android Studio? A annianni Follow Improve Article Tags : Technical Scripter Android Technical Scripter 2020 Android-Studio Similar Reads How to Generate Signed Apk in Android Studio? Signed Apk generates a key and this key can be used to release versions of the app, so it is important to save this key which will be used when the next version of the app is released. The Android system needs that all installed applications be digitally signed with a certificate whose private key i 3 min read How to Generate Signed AAB File in Android Studio? In this article, you will learn how to create an Android App Bundle (AAB) file for an Android app. An Android App Bundle is a publishing format that includes all your appâs compiled code and resources. Your application should be digitally signed with a key in order to publish it on the Google Play s 2 min read How to Install Android Studio Canary Version? Android Studio is an official development environment for building Android apps which is provided by Google. This IDE is built on JetBrains IntelliJ IDEA software which is designed for Android development. This version of Android Studio comes with a modern UI toolkit for building native Android UI. 4 min read How to Create Admin & Client App in One Project Using Android Studio? You all must know about projects in which two applications are required one for the client and the other for the admin. Here we will see how we can implement both the applications under a single project in android studio. Let us see the step-by-step implementation of this procedure. Step by Step Imp 2 min read How to Change the Default Generated apk Name in Android Studio? While developing any Android app using Android Studio we generate our APK file after creating our whole Android application. We use this .apk file to publish it to our Google Play console or on any other platform. When we are generating our .apk file for release apk. We always see our apk file name 6 min read Like