File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ android {
44
44
defaultConfig {
45
45
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
46
46
applicationId " com.example.example"
47
- minSdkVersion 16
47
+ minSdkVersion flutter . minSdkVersion
48
48
targetSdkVersion 30
49
49
versionCode flutterVersionCode. toInteger()
50
50
versionName flutterVersionName
Original file line number Diff line number Diff line change @@ -16,6 +16,17 @@ allprojects {
16
16
google()
17
17
mavenCentral()
18
18
}
19
+ subprojects {
20
+ afterEvaluate { project ->
21
+ if (project. hasProperty(' android' )) {
22
+ project. android {
23
+ if (namespace == null ) {
24
+ namespace project. group
25
+ }
26
+ }
27
+ }
28
+ }
29
+ }
19
30
}
20
31
21
32
rootProject. buildDir = ' ../build'
@@ -24,6 +35,6 @@ subprojects {
24
35
project. evaluationDependsOn(' :app' )
25
36
}
26
37
27
- task clean ( type : Delete ) {
38
+ tasks . register( " clean " , Delete ) {
28
39
delete rootProject. buildDir
29
40
}
Original file line number Diff line number Diff line change 1
1
# Sat Nov 02 12:59:26 GMT 2024
2
- distributionBase =GRADLE_USER_HOME
3
2
distributionPath =wrapper/dists
4
3
distributionUrl =https\://services.gradle.org/distributions/gradle-8.9-bin.zip
5
4
zipStoreBase =GRADLE_USER_HOME
You can’t perform that action at this time.
0 commit comments