Skip to content

Commit

Permalink
Merge pull request square#267 from square/ray/agp-3.0.0-alpha5
Browse files Browse the repository at this point in the history
Upgrade to Android Gradle Plugin 3.0.0-alpha5
  • Loading branch information
loganj authored Jul 6, 2017
2 parents 444a787 + 7d1b501 commit 821b495
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
10 changes: 9 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ext.deps = [
android_gradle_plugin : 'com.android.tools.build:gradle:2.4.0-alpha7',
android_gradle_plugin : 'com.android.tools.build:gradle:3.0.0-alpha5',
]

ext.minSdkVersion = 14
Expand All @@ -14,11 +14,19 @@ allprojects {
buildscript {
repositories {
jcenter()

maven {
url "https://maven.google.com"
}
}
}

repositories {
jcenter()

maven {
url "https://maven.google.com"
}
}

afterEvaluate { project ->
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-milestone-1-all.zip
6 changes: 3 additions & 3 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ DEFAULT_JVM_OPTS=""
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"

warn ( ) {
warn () {
echo "$*"
}

die ( ) {
die () {
echo
echo "$*"
echo
Expand Down Expand Up @@ -155,7 +155,7 @@ if $cygwin ; then
fi

# Escape application args
save ( ) {
save () {
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " "
}
Expand Down

0 comments on commit 821b495

Please sign in to comment.