File tree Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -37,16 +37,25 @@ android {
37
37
}
38
38
39
39
defaultConfig {
40
- // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
41
40
applicationId " org.fossasia.badgemagic"
42
- // You can update the following values to match your application needs.
43
- // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
44
- minSdkVersion 21
45
- targetSdkVersion flutter. targetSdkVersion
46
41
versionCode flutterVersionCode. toInteger()
47
42
versionName flutterVersionName
48
43
}
49
44
45
+ flavorDimensions " api"
46
+ productFlavors {
47
+ preApi30 {
48
+ dimension " api"
49
+ minSdkVersion 21
50
+ targetSdkVersion 29
51
+ }
52
+ postApi30 {
53
+ dimension " api"
54
+ minSdkVersion 30
55
+ targetSdkVersion 34
56
+ }
57
+ }
58
+
50
59
signingConfigs {
51
60
if (GITHUB_BUILD ) {
52
61
release {
You can’t perform that action at this time.
0 commit comments