-
Following the official documentation, I attempted to generate an APK file using the InstallAndroidDebug Gradle task. However, I encountered 55 DexBuilderDebug errors ("Error while Dexing", "type defined multiple times") preventing APK generation. Other Gradle tasks function normally. |
Beta Was this translation helpful? Give feedback.
Answered by
meoowe
Apr 28, 2024
Replies: 1 comment 5 replies
-
Which korge version are you using? You can find it in |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I fixed it. This line on settings.gradle.kts (
androidSdk(compileSdk = 28, minSdk = 22, targetSdk = 32)
) was the problem. I removed it and it all worked again.