Added multidex support in android build

This commit is contained in:
Elias Müller 2024-03-16 23:26:28 +01:00
parent 8b1e2fff1d
commit d368cfd5cd

View File

@ -49,6 +49,7 @@ android {
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
multiDexEnabled true
}
buildTypes {
@ -64,4 +65,6 @@ flutter {
source '../..'
}
dependencies {}
dependencies {
implementation 'com.android.support:multidex:1.0.3'
}