Skip to content

Commit b35fa01

Browse files
committed
Update fixture to compile and target API 36.
1 parent 8323842 commit b35fa01

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(34)
78-
buildToolsVersion = "34.0.0"
77+
compileSdkVersion(36)
78+
buildToolsVersion = "36.0.0"
7979
defaultConfig {
8080
minSdkVersion(21)
81-
targetSdkVersion(34)
81+
targetSdkVersion(36)
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 34
114-
buildToolsVersion "34.0.0"
113+
compileSdkVersion 36
114+
buildToolsVersion "36.0.0"
115115
defaultConfig {
116116
minSdkVersion 21
117-
targetSdkVersion 34
117+
targetSdkVersion 36
118118
}
119119
120120
lintOptions {

0 commit comments

Comments
 (0)