Skip to content

Commit 0ab0dab

Browse files
committed
chore: apply flutter grade plugins declaratively
1 parent 3b2853e commit 0ab0dab

File tree

3 files changed

+31
-33
lines changed

3 files changed

+31
-33
lines changed

android/app/build.gradle

+8-11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
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+
19
def localProperties = new Properties()
210
def localPropertiesFile = rootProject.file('local.properties')
311
if (localPropertiesFile.exists()) {
@@ -6,11 +14,6 @@ if (localPropertiesFile.exists()) {
614
}
715
}
816

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-
1417
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
1518
if (flutterVersionCode == null) {
1619
flutterVersionCode = '1'
@@ -27,11 +30,6 @@ if (keystorePropertiesFile.exists()) {
2730
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
2831
}
2932

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-
3533
android {
3634
compileSdkVersion flutter.compileSdkVersion
3735
ndkVersion flutter.ndkVersion
@@ -109,6 +107,5 @@ flutter {
109107
}
110108

111109
dependencies {
112-
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
113110
implementation 'com.android.support:multidex:1.0.3'
114111
}

android/build.gradle

-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,3 @@
1-
buildscript {
2-
ext.kotlin_version = '1.7.10'
3-
repositories {
4-
google()
5-
mavenCentral()
6-
}
7-
8-
dependencies {
9-
classpath 'com.android.tools.build:gradle:7.4.2'
10-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
11-
classpath 'com.google.gms:google-services:4.4.1'
12-
}
13-
}
14-
151
allprojects {
162
repositories {
173
google()

android/settings.gradle

+23-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,26 @@
1-
include ':app'
1+
pluginManagement {
2+
def flutterSdkPath = {
3+
def properties = new Properties()
4+
file("local.properties").withInputStream { properties.load(it) }
5+
def flutterSdkPath = properties.getProperty("flutter.sdk")
6+
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
7+
return flutterSdkPath
8+
}()
29

3-
def localPropertiesFile = new File(rootProject.projectDir, "local.properties")
4-
def properties = new Properties()
10+
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
511

6-
assert localPropertiesFile.exists()
7-
localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) }
12+
repositories {
13+
google()
14+
mavenCentral()
15+
gradlePluginPortal()
16+
}
17+
}
818

9-
def flutterSdkPath = properties.getProperty("flutter.sdk")
10-
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
11-
apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"
19+
plugins {
20+
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
21+
id "com.android.application" version "7.4.2" apply false
22+
id "org.jetbrains.kotlin.android" version "1.7.10" apply false
23+
id "com.google.gms.google-services" version "4.4.0" apply false
24+
}
25+
26+
include ":app"

0 commit comments

Comments
 (0)