Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
Bump compileSdk to 35
Browse files Browse the repository at this point in the history
- Bump buildToolsVersion to 35.0.0
  • Loading branch information
SanmerDev committed Jun 19, 2024
1 parent aefbe04 commit 8cfa1aa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build-logic/src/main/kotlin/ApplicationConventionPlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ class ApplicationConventionPlugin : Plugin<Project> {
apply(plugin = "org.jetbrains.kotlin.android")

extensions.configure<ApplicationExtension> {
compileSdk = 34
buildToolsVersion = "34.0.0"
compileSdk = 35
buildToolsVersion = "35.0.0"

defaultConfig {
minSdk = 26
targetSdk = compileSdk
targetSdk = 34
}

compileOptions {
Expand Down
4 changes: 2 additions & 2 deletions build-logic/src/main/kotlin/LibraryConventionPlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ class LibraryConventionPlugin : Plugin<Project> {
apply(plugin = "org.jetbrains.kotlin.android")

extensions.configure<LibraryExtension> {
compileSdk = 34
buildToolsVersion = "34.0.0"
compileSdk = 35
buildToolsVersion = "35.0.0"

defaultConfig {
minSdk = 26
Expand Down

0 comments on commit 8cfa1aa

Please sign in to comment.