Unverified Commit e5aac692 authored by Mikkel Nygaard Ravn's avatar Mikkel Nygaard Ravn Committed by GitHub

Support Android Gradle plugin v3.0.1 (#13492)

parent d04c906e
...@@ -19,9 +19,12 @@ import org.gradle.api.tasks.bundling.Jar ...@@ -19,9 +19,12 @@ import org.gradle.api.tasks.bundling.Jar
buildscript { buildscript {
repositories { repositories {
jcenter() jcenter()
maven {
url 'https://maven.google.com'
}
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:2.2.3' classpath 'com.android.tools.build:gradle:3.0.1'
} }
} }
...@@ -101,7 +104,11 @@ class FlutterPlugin implements Plugin<Project> { ...@@ -101,7 +104,11 @@ class FlutterPlugin implements Plugin<Project> {
localEngineSrcPath = engineOut.parentFile.parent localEngineSrcPath = engineOut.parentFile.parent
project.dependencies { project.dependencies {
compile project.files(flutterJar) if (project.getConfigurations().findByName("implementation")) {
implementation project.files(flutterJar)
} else {
compile project.files(flutterJar)
}
} }
} else { } else {
Path baseEnginePath = Paths.get(flutterRoot.absolutePath, "bin", "cache", "artifacts", "engine") Path baseEnginePath = Paths.get(flutterRoot.absolutePath, "bin", "cache", "artifacts", "engine")
...@@ -131,10 +138,10 @@ class FlutterPlugin implements Plugin<Project> { ...@@ -131,10 +138,10 @@ class FlutterPlugin implements Plugin<Project> {
into "lib/x86_64" into "lib/x86_64"
} }
} }
// Add flutter.jar dependencies to all <buildType>Compile configurations, including custom ones // Add flutter.jar dependencies to all <buildType>Implementation configurations, including custom ones
// added after applying the Flutter plugin. // added after applying the Flutter plugin.
project.android.buildTypes.each { addFlutterJarCompileDependency(project, it) } project.android.buildTypes.each { addFlutterJarImplementationDependency(project, it) }
project.android.buildTypes.whenObjectAdded { addFlutterJarCompileDependency(project, it) } project.android.buildTypes.whenObjectAdded { addFlutterJarImplementationDependency(project, it) }
} }
project.extensions.create("flutter", FlutterExtension) project.extensions.create("flutter", FlutterExtension)
...@@ -147,37 +154,56 @@ class FlutterPlugin implements Plugin<Project> { ...@@ -147,37 +154,56 @@ class FlutterPlugin implements Plugin<Project> {
def pluginProject = project.rootProject.findProject(":$name") def pluginProject = project.rootProject.findProject(":$name")
if (pluginProject != null) { if (pluginProject != null) {
project.dependencies { project.dependencies {
compile pluginProject if (project.getConfigurations().findByName("implementation")) {
implementation pluginProject
} else {
compile pluginProject
}
} }
pluginProject.afterEvaluate this.&addFlutterJarProvidedDependency pluginProject.afterEvaluate this.&addFlutterJarCompileOnlyDependency
} else { } else {
project.logger.error("Plugin project :$name not found. Please update settings.gradle.") project.logger.error("Plugin project :$name not found. Please update settings.gradle.")
} }
} }
} }
private void addFlutterJarProvidedDependency(Project project) { private void addFlutterJarCompileOnlyDependency(Project project) {
if (project.state.failure) { if (project.state.failure) {
return return
} }
project.dependencies { project.dependencies {
if (flutterJar != null) { if (flutterJar != null) {
provided project.files(flutterJar) if (project.getConfigurations().findByName("compileOnly")) {
compileOnly project.files(flutterJar)
} else {
provided project.files(flutterJar)
}
} else { } else {
debugProvided project.files(debugFlutterJar) if (project.getConfigurations().findByName("debugCompileOnly")) {
releaseProvided project.files(releaseFlutterJar) debugCompileOnly project.files(debugFlutterJar)
releaseCompileOnly project.files(releaseFlutterJar)
} else {
debugProvided project.files(debugFlutterJar)
releaseProvided project.files(releaseFlutterJar)
}
} }
} }
} }
/** /**
* Adds suitable flutter.jar compile dependencies to the specified buildType. * Adds suitable flutter.jar implementation dependencies to the specified buildType.
* *
* Note: The BuildType DSL type is not public, and is therefore omitted from the signature. * Note: The BuildType DSL type is not public, and is therefore omitted from the signature.
*/ */
private void addFlutterJarCompileDependency(Project project, buildType) { private void addFlutterJarImplementationDependency(Project project, buildType) {
project.dependencies { project.dependencies {
add(buildType.name + "Compile", project.files { String configuration;
if (project.getConfigurations().findByName("implementation")) {
configuration = buildType.name + "Implementation";
} else {
configuration = buildType.name + "Compile";
}
add(configuration, project.files {
String buildMode = buildModeFor(buildType) String buildMode = buildModeFor(buildType)
if (buildMode == "debug") { if (buildMode == "debug") {
[flutterX86Jar, debugFlutterJar] [flutterX86Jar, debugFlutterJar]
...@@ -247,6 +273,10 @@ class FlutterPlugin implements Plugin<Project> { ...@@ -247,6 +273,10 @@ class FlutterPlugin implements Plugin<Project> {
if (task) { if (task) {
task.dependsOn project.flutterBuildX86Jar task.dependsOn project.flutterBuildX86Jar
} }
task = project.tasks.findByName("compile${variant.name.capitalize()}Kotlin")
if (task) {
task.dependsOn project.flutterBuildX86Jar
}
} }
GenerateDependencies dependenciesTask = project.tasks.create(name: "flutterDependencies${variant.name.capitalize()}", type: GenerateDependencies) { GenerateDependencies dependenciesTask = project.tasks.create(name: "flutterDependencies${variant.name.capitalize()}", type: GenerateDependencies) {
......
...@@ -23,7 +23,7 @@ import 'android_studio.dart'; ...@@ -23,7 +23,7 @@ import 'android_studio.dart';
const String gradleManifestPath = 'android/app/src/main/AndroidManifest.xml'; const String gradleManifestPath = 'android/app/src/main/AndroidManifest.xml';
const String gradleAppOutV1 = 'android/app/build/outputs/apk/app-debug.apk'; const String gradleAppOutV1 = 'android/app/build/outputs/apk/app-debug.apk';
const String gradleAppOutDirV1 = 'android/app/build/outputs/apk'; const String gradleAppOutDirV1 = 'android/app/build/outputs/apk';
const String gradleVersion = '3.3'; const String gradleVersion = '4.1';
final RegExp _assembleTaskPattern = new RegExp(r'assemble([^:]+): task '); final RegExp _assembleTaskPattern = new RegExp(r'assemble([^:]+): task ');
GradleProject _cachedGradleProject; GradleProject _cachedGradleProject;
...@@ -336,6 +336,12 @@ File _findApkFile(GradleProject project, BuildInfo buildInfo) { ...@@ -336,6 +336,12 @@ File _findApkFile(GradleProject project, BuildInfo buildInfo) {
apkFile = fs.file(fs.path.join(project.apkDirectory, buildInfo.modeName, apkFileName)); apkFile = fs.file(fs.path.join(project.apkDirectory, buildInfo.modeName, apkFileName));
if (apkFile.existsSync()) if (apkFile.existsSync())
return apkFile; return apkFile;
if (buildInfo.flavor != null) {
// Android Studio Gradle plugin v3 adds flavor to path.
apkFile = fs.file(fs.path.join(project.apkDirectory, buildInfo.flavor, buildInfo.modeName, apkFileName));
if (apkFile.existsSync())
return apkFile;
}
return null; return null;
} }
......
...@@ -15,8 +15,8 @@ apply plugin: 'com.android.application' ...@@ -15,8 +15,8 @@ apply plugin: 'com.android.application'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android { android {
compileSdkVersion 25 compileSdkVersion 26
buildToolsVersion '25.0.3' buildToolsVersion '26.0.3'
lintOptions { lintOptions {
disable 'InvalidPackage' disable 'InvalidPackage'
...@@ -26,7 +26,7 @@ android { ...@@ -26,7 +26,7 @@ android {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "{{androidIdentifier}}" applicationId "{{androidIdentifier}}"
minSdkVersion 16 minSdkVersion 16
targetSdkVersion 25 targetSdkVersion 26
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
...@@ -38,6 +38,9 @@ android { ...@@ -38,6 +38,9 @@ android {
// Signing with the debug keys for now, so `flutter run --release` works. // Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug signingConfig signingConfigs.debug
} }
profile {
matchingFallbacks = ['debug', 'release']
}
} }
} }
...@@ -46,7 +49,7 @@ flutter { ...@@ -46,7 +49,7 @@ flutter {
} }
dependencies { dependencies {
androidTestCompile 'com.android.support:support-annotations:25.4.0' testImplementation 'junit:junit:4.12'
androidTestCompile 'com.android.support.test:runner:0.5' androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestCompile 'com.android.support.test:rules:0.5' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
} }
buildscript { buildscript {
repositories { repositories {
google()
jcenter() jcenter()
maven {
url "https://maven.google.com"
}
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:2.3.3' classpath 'com.android.tools.build:gradle:3.0.1'
} }
} }
allprojects { allprojects {
repositories { repositories {
google()
jcenter() jcenter()
maven {
url "https://maven.google.com"
}
} }
} }
......
...@@ -16,8 +16,8 @@ apply plugin: 'kotlin-android' ...@@ -16,8 +16,8 @@ apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android { android {
compileSdkVersion 25 compileSdkVersion 26
buildToolsVersion '25.0.3' buildToolsVersion '26.0.3'
sourceSets { sourceSets {
main.java.srcDirs += 'src/main/kotlin' main.java.srcDirs += 'src/main/kotlin'
...@@ -31,7 +31,7 @@ android { ...@@ -31,7 +31,7 @@ android {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "{{androidIdentifier}}" applicationId "{{androidIdentifier}}"
minSdkVersion 16 minSdkVersion 16
targetSdkVersion 25 targetSdkVersion 26
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
...@@ -43,6 +43,9 @@ android { ...@@ -43,6 +43,9 @@ android {
// Signing with the debug keys for now, so `flutter run --release` works. // Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug signingConfig signingConfigs.debug
} }
profile {
matchingFallbacks = ['debug', 'release']
}
} }
} }
...@@ -51,8 +54,8 @@ flutter { ...@@ -51,8 +54,8 @@ flutter {
} }
dependencies { dependencies {
androidTestCompile 'com.android.support:support-annotations:25.4.0' implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
androidTestCompile 'com.android.support.test:runner:0.5' testImplementation 'junit:junit:4.12'
androidTestCompile 'com.android.support.test:rules:0.5' androidTestImplementation 'com.android.support.test:runner:1.0.1'
compile 'org.jetbrains.kotlin:kotlin-stdlib-jre7:1.1.2-4' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
} }
buildscript { buildscript {
ext.kotlin_version = '1.1.51'
repositories { repositories {
google()
jcenter() jcenter()
maven {
url "https://maven.google.com"
}
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:2.3.3' classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.1.2-4' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
} }
} }
allprojects { allprojects {
repositories { repositories {
google()
jcenter() jcenter()
maven {
url "https://maven.google.com"
}
} }
} }
......
...@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME ...@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
...@@ -3,35 +3,31 @@ version '1.0-SNAPSHOT' ...@@ -3,35 +3,31 @@ version '1.0-SNAPSHOT'
buildscript { buildscript {
repositories { repositories {
google()
jcenter() jcenter()
maven {
url "https://maven.google.com"
}
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:2.3.3' classpath 'com.android.tools.build:gradle:3.0.1'
} }
} }
rootProject.allprojects { rootProject.allprojects {
repositories { repositories {
google()
jcenter() jcenter()
maven {
url "https://maven.google.com"
}
} }
} }
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
android { android {
compileSdkVersion 25 compileSdkVersion 26
buildToolsVersion '25.0.3' buildToolsVersion '26.0.3'
defaultConfig { defaultConfig {
minSdkVersion 16 minSdkVersion 16
targetSdkVersion 25 targetSdkVersion 26
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
......
...@@ -2,24 +2,22 @@ group '{{androidIdentifier}}' ...@@ -2,24 +2,22 @@ group '{{androidIdentifier}}'
version '1.0-SNAPSHOT' version '1.0-SNAPSHOT'
buildscript { buildscript {
ext.kotlin_version = '1.1.51'
repositories { repositories {
google()
jcenter() jcenter()
maven {
url "https://maven.google.com"
}
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:2.3.3' classpath 'com.android.tools.build:gradle:3.0.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
} }
} }
rootProject.allprojects { rootProject.allprojects {
repositories { repositories {
google()
jcenter() jcenter()
maven {
url "https://maven.google.com"
}
} }
} }
...@@ -27,15 +25,15 @@ apply plugin: 'com.android.library' ...@@ -27,15 +25,15 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android' apply plugin: 'kotlin-android'
android { android {
compileSdkVersion 25 compileSdkVersion 26
buildToolsVersion '25.0.3' buildToolsVersion '26.0.3'
sourceSets { sourceSets {
main.java.srcDirs += 'src/main/kotlin' main.java.srcDirs += 'src/main/kotlin'
} }
defaultConfig { defaultConfig {
minSdkVersion 16 minSdkVersion 16
targetSdkVersion 25 targetSdkVersion 26
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
...@@ -46,5 +44,5 @@ android { ...@@ -46,5 +44,5 @@ android {
} }
dependencies { dependencies {
compile 'org.jetbrains.kotlin:kotlin-stdlib-jre7:1.1.2-4' implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
} }
...@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME ...@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment