Skip to content

Commit

Permalink
sdk 35 and compose compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
JolandaVerhoef committed Dec 10, 2024
1 parent 45af4cd commit 067ac05
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,17 @@ plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
id("org.jetbrains.kotlin.plugin.serialization") version "2.1.0"
id("org.jetbrains.kotlin.plugin.compose")
}

android {
namespace = "com.example.amphibians"
compileSdk = 34
compileSdk = 35

defaultConfig {
applicationId = "com.example.amphibians"
minSdk = 24
targetSdk = 34
targetSdk = 35
versionCode = 1
versionName = "1.0"

Expand Down Expand Up @@ -56,9 +57,6 @@ android {
buildFeatures {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = rootProject.extra["compose_compiler_version"].toString()
}
packaging {
resources {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

buildscript {
extra.apply {
set("compose_compiler_version", "1.5.2")
set("lifecycle_version", "2.8.7")
set("retrofit2_version", "2.11.0")
}
Expand All @@ -28,4 +27,5 @@ plugins {
id("com.android.application") version "8.7.3" apply false
id("com.android.library") version "8.7.3" apply false
id("org.jetbrains.kotlin.android") version "2.1.0" apply false
id("org.jetbrains.kotlin.plugin.compose") version "2.1.0" apply false
}

0 comments on commit 067ac05

Please sign in to comment.