1
+ plugins {
2
+ id ' com.android.application'
3
+ id ' kotlin-android'
4
+ id " org.jetbrains.kotlin.android"
5
+ id ' dev.flutter.flutter-gradle-plugin'
6
+ id ' com.google.gms.google-services'
7
+ }
8
+
1
9
def localProperties = new Properties ()
2
10
def localPropertiesFile = rootProject. file(' local.properties' )
3
11
if (localPropertiesFile. exists()) {
@@ -6,11 +14,6 @@ if (localPropertiesFile.exists()) {
6
14
}
7
15
}
8
16
9
- def flutterRoot = localProperties. getProperty(' flutter.sdk' )
10
- if (flutterRoot == null ) {
11
- throw new GradleException (" Flutter SDK not found. Define location with flutter.sdk in the local.properties file." )
12
- }
13
-
14
17
def flutterVersionCode = localProperties. getProperty(' flutter.versionCode' )
15
18
if (flutterVersionCode == null ) {
16
19
flutterVersionCode = ' 1'
@@ -27,11 +30,6 @@ if (keystorePropertiesFile.exists()) {
27
30
keystoreProperties. load(new FileInputStream (keystorePropertiesFile))
28
31
}
29
32
30
- apply plugin : ' com.android.application'
31
- apply plugin : ' com.google.gms.google-services'
32
- apply plugin : ' kotlin-android'
33
- apply from : " $flutterRoot /packages/flutter_tools/gradle/flutter.gradle"
34
-
35
33
android {
36
34
compileSdkVersion flutter. compileSdkVersion
37
35
ndkVersion flutter. ndkVersion
@@ -109,6 +107,5 @@ flutter {
109
107
}
110
108
111
109
dependencies {
112
- implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
113
110
implementation ' com.android.support:multidex:1.0.3'
114
111
}
0 commit comments