Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
e5aac692
Unverified
Commit
e5aac692
authored
Dec 13, 2017
by
Mikkel Nygaard Ravn
Committed by
GitHub
Dec 13, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support Android Gradle plugin v3.0.1 (#13492)
parent
d04c906e
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
95 additions
and
66 deletions
+95
-66
flutter.gradle
packages/flutter_tools/gradle/flutter.gradle
+44
-14
gradle.dart
packages/flutter_tools/lib/src/android/gradle.dart
+7
-1
build.gradle.tmpl
.../templates/create/android-java.tmpl/app/build.gradle.tmpl
+9
-6
build.gradle
...ter_tools/templates/create/android-java.tmpl/build.gradle
+3
-7
build.gradle.tmpl
...emplates/create/android-kotlin.tmpl/app/build.gradle.tmpl
+10
-7
build.gradle
...r_tools/templates/create/android-kotlin.tmpl/build.gradle
+5
-8
gradle-wrapper.properties
...ate/android.tmpl/gradle/wrapper/gradle-wrapper.properties
+1
-1
build.gradle.tmpl
...ools/templates/plugin/android-java.tmpl/build.gradle.tmpl
+6
-10
build.gradle.tmpl
...ls/templates/plugin/android-kotlin.tmpl/build.gradle.tmpl
+9
-11
gradle-wrapper.properties
...gin/android.tmpl/gradle/wrapper/gradle-wrapper.properties
+1
-1
No files found.
packages/flutter_tools/gradle/flutter.gradle
View file @
e5aac692
...
@@ -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
{
addFlutterJar
Compile
Dependency
(
project
,
it
)
}
project
.
android
.
buildTypes
.
each
{
addFlutterJar
Implementation
Dependency
(
project
,
it
)
}
project
.
android
.
buildTypes
.
whenObjectAdded
{
addFlutterJar
Compile
Dependency
(
project
,
it
)
}
project
.
android
.
buildTypes
.
whenObjectAdded
{
addFlutterJar
Implementation
Dependency
(
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
.&
addFlutterJar
Provided
Dependency
pluginProject
.
afterEvaluate
this
.&
addFlutterJar
CompileOnly
Dependency
}
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
addFlutterJar
Provided
Dependency
(
Project
project
)
{
private
void
addFlutterJar
CompileOnly
Dependency
(
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
addFlutterJar
Compile
Dependency
(
Project
project
,
buildType
)
{
private
void
addFlutterJar
Implementation
Dependency
(
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
)
{
...
...
packages/flutter_tools/lib/src/android/gradle.dart
View file @
e5aac692
...
@@ -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
;
}
}
...
...
packages/flutter_tools/templates/create/android-java.tmpl/app/build.gradle.tmpl
View file @
e5aac692
...
@@ -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 2
5
compileSdkVersion 2
6
buildToolsVersion '2
5
.0.3'
buildToolsVersion '2
6
.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 2
5
targetSdkVersion 2
6
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
'
androidTest
Compile 'com.android.support.test:runner:0.5
'
androidTest
Implementation 'com.android.support.test:runner:1.0.1
'
androidTest
Compile 'com.android.support.test:rules:0.5
'
androidTest
Implementation 'com.android.support.test.espresso:espresso-core:3.0.1
'
}
}
packages/flutter_tools/templates/create/android-java.tmpl/build.gradle
View file @
e5aac692
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"
}
}
}
}
}
...
...
packages/flutter_tools/templates/create/android-kotlin.tmpl/app/build.gradle.tmpl
View file @
e5aac692
...
@@ -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 2
5
compileSdkVersion 2
6
buildToolsVersion '2
5
.0.3'
buildToolsVersion '2
6
.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 2
5
targetSdkVersion 2
6
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
'
androidTest
Compile 'com.android.support.test:rules:0.5
'
androidTest
Implementation '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
'
}
}
packages/flutter_tools/templates/create/android-kotlin.tmpl/build.gradle
View file @
e5aac692
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"
}
}
}
}
}
...
...
packages/flutter_tools/templates/create/android.tmpl/gradle/wrapper/gradle-wrapper.properties
View file @
e5aac692
...
@@ -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
packages/flutter_tools/templates/plugin/android-java.tmpl/build.gradle.tmpl
View file @
e5aac692
...
@@ -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 2
5
compileSdkVersion 2
6
buildToolsVersion '2
5
.0.3'
buildToolsVersion '2
6
.0.3'
defaultConfig {
defaultConfig {
minSdkVersion 16
minSdkVersion 16
targetSdkVersion 2
5
targetSdkVersion 2
6
versionCode 1
versionCode 1
versionName "1.0"
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
...
...
packages/flutter_tools/templates/plugin/android-kotlin.tmpl/build.gradle.tmpl
View file @
e5aac692
...
@@ -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 2
5
compileSdkVersion 2
6
buildToolsVersion '2
5
.0.3'
buildToolsVersion '2
6
.0.3'
sourceSets {
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
main.java.srcDirs += 'src/main/kotlin'
}
}
defaultConfig {
defaultConfig {
minSdkVersion 16
minSdkVersion 16
targetSdkVersion 2
5
targetSdkVersion 2
6
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"
}
}
packages/flutter_tools/templates/plugin/android.tmpl/gradle/wrapper/gradle-wrapper.properties
View file @
e5aac692
...
@@ -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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment