Skip to content

Commit c5c909b

Browse files
committed
Update to Android Gradle Plugin 4.0.0 + some other small dependency updates
1 parent 8741e65 commit c5c909b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

gradle/dependencies.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ ext {
33
minSdk : 19,
44
targetSdk : 29,
55
compileSdk: 29,
6-
kotlin : "1.3.61"
6+
kotlin : "1.3.72"
77
]
88
projectDependency = [
99

1010
// Gradle Plugins
1111
kotlinPlugin : "org.jetbrains.kotlin:kotlin-gradle-plugin:${projectVersion.kotlin}",
12-
androidGradlePlugin: "com.android.tools.build:gradle:3.6.1",
12+
androidGradlePlugin: "com.android.tools.build:gradle:4.0.0",
1313

1414
// Dependencies
1515
kotlinStdlibJdk7 : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${projectVersion.kotlin}",

plugin/src/test/kotlin/org/neotech/plugin/rootcoverage/IntegrationTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class IntegrationTest(
6060

6161
val testFixtures = File("src/test/test-fixtures").listFiles()?.filter { it.isDirectory }
6262
?: error("Could not list test fixture directories")
63-
val gradleVersions = arrayOf("5.6.4", "6.1.1", "6.2.1")
63+
val gradleVersions = arrayOf("6.1.1", "6.2.1", "6.5")
6464
return testFixtures.flatMap { file ->
6565
gradleVersions.map { gradleVersion ->
6666
arrayOf("${file.name}-$gradleVersion", file, gradleVersion)

0 commit comments

Comments
 (0)