When compiling in the latest version of B4A, two files classes.dex and classes2.dex are created. In the previous version, only one file was created. What can be adjusted or is it supposed to be like this?
The Android SDK and the underlying toolchain where updated with preparation for Android 14 (targetSdkVersion=34) requirements.
Many of the internal libraries and also external libraries were updated and now depend on the latest Android SDK resources.
The new version depends on Java 19.
Many of the features depend on an updated Android SDK.
Multiple classes.dex files (or more generally, DEX files) are created in Android applications when they exceed the method count limit of 65,535 methods per DEX file. This limit was introduced in earlier Android versions and was a key factor in the development of multi-DEX support. By default, Android build tools split the application's code into multiple DEX files to overcome this limitation.
The Android SDK and the underlying toolchain where updated with preparation for Android 14 (targetSdkVersion=34) requirements.
Many of the internal libraries and also external libraries were updated and now depend on the latest Android SDK resources.
The new version depends on Java 19.
Many of the features depend on an updated Android SDK.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.