Skip to content

Commit 1659593

Browse files
committed
Revert back to API 35 until API 36 platform tools are installed in GHA runners.
1 parent b35fa01 commit 1659593

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/functionalTest/kotlin/io/github/reactivecircus/appversioning/fixtures/ProjectTemplates.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ abstract class AndroidProjectTemplate {
7474
7575
android {
7676
namespace = "$DEFAULT_PACKAGE_NAME.${projectName.replace("-", ".")}"
77-
compileSdkVersion(36)
78-
buildToolsVersion = "36.0.0"
77+
compileSdkVersion(35)
78+
buildToolsVersion = "35.0.0"
7979
defaultConfig {
8080
minSdkVersion(21)
81-
targetSdkVersion(36)
81+
targetSdkVersion(35)
8282
}
8383
8484
lintOptions.isCheckReleaseBuilds = false
@@ -110,11 +110,11 @@ abstract class AndroidProjectTemplate {
110110
111111
android {
112112
namespace '$DEFAULT_PACKAGE_NAME.${projectName.replace("-", ".")}'
113-
compileSdkVersion 36
114-
buildToolsVersion "36.0.0"
113+
compileSdkVersion 35
114+
buildToolsVersion "35.0.0"
115115
defaultConfig {
116116
minSdkVersion 21
117-
targetSdkVersion 36
117+
targetSdkVersion 35
118118
}
119119
120120
lintOptions {

0 commit comments

Comments
 (0)