Skip to content

Commit

Permalink
chore: enableFeaturePreview
Browse files Browse the repository at this point in the history
  • Loading branch information
nqmgaming committed Dec 6, 2024
1 parent 0d549cc commit ac664b6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ dependencies {

implementation(libs.play.services.ads)

implementation(project(":compose-cardstack"))
implementation(projects.composeCardstack)
implementation(libs.lottie.compose)

// Compose
Expand Down
10 changes: 10 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,16 @@ dependencyResolutionManagement {
}

rootProject.name = "QuickMem"

enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(":app")
include(":compose-cardstack")

check(JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_17)) {
"""
Quickmem requires JDK 17+ but it is currently using JDK ${JavaVersion.current()}.
Java Home: [${System.getProperty("java.home")}]
https://developer.android.com/build/jdks#jdk-config-in-studio
""".trimIndent()
}

0 comments on commit ac664b6

Please sign in to comment.