

Here is a simple guide that will help you to export your application as an executable from Android Studio IDE. Now, assuming that you have developed your Application in Android Studio and want to export it as an executable application format to be able to share it with your friends or to publish it on the Google Play Store. Learn the basics of Android Application Development.Learn how to move your Android Projects from Eclipse IDE to Android Studio.What is Android Studio? Why should you start using it today?.If you still haven’t moved from the Eclipse IDE, here are a few tutorials that can help you. It is mainly that because Google has launched it as its official IDE and now provides support only for Android Studio. Select your keystore, provide keystore password etc.Android Studio is the chosen Android Application Development IDE by developers these days. For me it asks me to select whether I want debug build or release build. This can lead to accidentally publishing your app with debug information. If on the other hand you specify a specific value in the manifest file, then the tools will always use it. And when you perform a release build, such as Exporting APK, it will automatically set it to false. If you do, then the tools will automatically insert android:debuggable=true when building an APK to debug on an emulator or device.

It"s best to leave out the android:debuggable attribute from the manifest. Infact for me studio complaints -Īvoid hardcoding the debug mode leaving it out allows debug and release builds to automatically assign one less.

You don"t need to harcode android:debuggable="false" in your application tag. 46k3636 gold badges103103 silver badges155155 bronze badgesįirstly, Add this android:debuggable="false" in the application tag of the AndroidManifest.xml.
