For various reasons I’d like to use IntelliJ IDEA ...
# compose-android
m
For various reasons I’d like to use IntelliJ IDEA instead of Android Studio to build my CMP applications. In AS I use Build > Generate Signed Bundle/APK … to create the signed upload-bundles. What is the alternative in IntelliJ? This menu entry seems to be missing there.
c
did you configure the
signingConfigs
in the AGP? then you can just invoke
gradle :<appModule>:assembleRelease
for and APK and
gradle :<appModule>:bundleRelease
for an app bundle. https://developer.android.com/studio/publish/app-signing#secure-shared-keystore
🙏 1
I guess the UI is part of the customizations for Android Studio and not available for IntelliJ.
😢 1