Building an apk
Answered
I created a simple helloworld in IDEA using Koplin, but I cannot figure out how to build an apk. I researched it on the web and the closest thing I can get is "Extract signed packages to deploy and run your applications on physical devices" and "Extract a Signed Android Application Package Wizard" and I can't find this option in any of the menu options in the IDE.
TIA
Paul
Please sign in to leave a comment.
Hello,
There should be "Android Application" artifact type in "Project Structure | Artifacts": https://www.jetbrains.com/help/idea/generating-a-signed-apk-through-an-artifact.html
I don't like to go with any type of APK. We face some legal and security issues when using an APK.
I faced a similar situation when trying to build a delta script apk in IntelliJ. The easiest way for me was opening the project with Android Studio and using Build → Build APK(s) or Generate Signed Bundle/APK.
After Gradle sync, the APK was generated in the
app/build/outputs/apkfolder and worked normally on the device.Hello Heinrichklaaseen
TO generate an APK in IntelliJ IDEA, you follow the same steps as you mentioned above for Android Studio. Go to Build | Generate App Bundles or APKs | Generate APK, or you can choose Build | Generate Signed App Bundle or APK.
Also, if you run the project through the Run Configuration, you can get the APK:
app/build/outputs/apk/debug/app-debug.apk