Skip to content

Commit da39b73

Browse files
committed
feature: upgrade AGP to 4.2.0-alpha15, Gradle to 6.7, Polyfill to 0.1.3
1 parent 1e83f1b commit da39b73

File tree

5 files changed

+7
-11
lines changed

5 files changed

+7
-11
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import BuildConfig.Deps
22

33
buildscript {
44
group = "me.2bab"
5-
version = "3.0.0"
5+
version = "3.0.1"
66

77
repositories {
88
google()

buildSrc/src/main/kotlin/BuildConfig.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ object BuildConfig {
33

44
object Deps {
55
const val ktStd = "stdlib-jdk8"
6-
const val agp = "com.android.tools.build:gradle:4.2.0-alpha12"
7-
const val polyfill = "me.2bab:polyfill:0.1.2"
6+
const val agp = "com.android.tools.build:gradle:4.2.0-alpha15"
7+
const val polyfill = "me.2bab:polyfill:0.1.3"
88

99
// Test
1010
const val junit = "junit:junit:4.12"

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
<<<<<<< HEAD
7-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip
8-
=======
9-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-all.zip
10-
>>>>>>> dev
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip

sample/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
buildscript {
22

33
project.extra["kotlinVersion"] = "1.4.10"
4-
project.extra["agpVersion"] = "4.2.0-alpha12"
4+
project.extra["agpVersion"] = "4.2.0-alpha15"
55

66
repositories {
77
google()
@@ -14,7 +14,7 @@ buildscript {
1414
classpath("com.android.tools.build:gradle:${project.extra["agpVersion"]}")
1515
// Switch to test local / remote dependencies
1616
classpath(fileTree(mapOf("dir" to "../build/libs", "include" to arrayOf("*.jar"))))
17-
classpath("me.2bab:polyfill:0.1.2")
17+
classpath("me.2bab:polyfill:0.1.3")
1818
// classpath("me.2bab:seal:3.0.0")
1919
}
2020

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Tue Sep 22 17:43:42 SGT 2020
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)