diff --git a/.vscode/settings.json b/.vscode/settings.json index 0234506..611766f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,4 @@ { - "cSpell.words": ["appbar", "Etherium", "RGBO"] + "cSpell.words": ["appbar", "Etherium", "RGBO"], + "java.configuration.updateBuildConfiguration": "interactive" } diff --git a/android/app/build.gradle b/android/app/build.gradle index 92e7627..c0ef1ae 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -8,7 +8,7 @@ if (localPropertiesFile.exists()) { def flutterRoot = localProperties.getProperty('flutter.sdk') if (flutterRoot == null) { - throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") + throw new RuntimeException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") } def flutterVersionCode = localProperties.getProperty('flutter.versionCode') @@ -47,10 +47,11 @@ android { applicationId "com.example.defiraiser_mobile" // You can update the following values to match your application needs. // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration. - minSdkVersion flutter.minSdkVersion - targetSdkVersion flutter.targetSdkVersion - versionCode flutterVersionCode.toInteger() - versionName flutterVersionName + minSdkVersion 21 + targetSdkVersion 33 + versionCode 53 + versionName "1.2.1" + multiDexEnabled true } buildTypes {