Skip to content

Commit aea7682

Browse files
committed
fix android build
1 parent 36b62aa commit aea7682

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

compose/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ kotlin {
7373
}
7474

7575
android {
76-
compileSdk = 35
76+
compileSdk = 36
7777
namespace = "io.tolgee.mobilekotlinsdk.compose"
7878

7979
defaultConfig {

core/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ kotlin {
254254
}
255255

256256
android {
257-
compileSdk = 35
257+
compileSdk = 36
258258
namespace = "io.tolgee.mobilekotlinsdk.core"
259259

260260
defaultConfig {

demo/exampleandroid/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ plugins {
66

77
android {
88
namespace = "io.tolgee.demo.exampleandroid"
9-
compileSdk = 35
9+
compileSdk = 36
1010

1111
defaultConfig {
1212
applicationId = "io.tolgee.demo.exampleandroid"
1313
minSdk = 21
14-
targetSdk = 35
14+
targetSdk = 36
1515
versionCode = 1
1616
versionName = "1.0"
1717
}

demo/examplejetpack/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ plugins {
66

77
android {
88
namespace = "io.tolgee.demo.examplejetpack"
9-
compileSdk = 35
9+
compileSdk = 36
1010

1111
defaultConfig {
1212
applicationId = "io.tolgee.demo.examplejetpack"
1313
minSdk = 24
14-
targetSdk = 35
14+
targetSdk = 36
1515
versionCode = 1
1616
versionName = "1.0"
1717
}

gradle-plugin/src/main/java/io/tolgee/TolgeePlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ open class TolgeePlugin : Plugin<Project> {
1515

1616
companion object {
1717
// Separate variable so it can easily be replaced by sed in CI/CD
18-
private const val PACKAGE_VERSION = "1.0.0-alpha01"
18+
private const val PACKAGE_VERSION = "1.0.0-alpha02"
1919

2020
val version: String
2121
get() = this::class.java.`package`?.implementationVersion?.ifBlank { null }

0 commit comments

Comments
 (0)