Skip to content

Commit

Permalink
Fix build.gradle.kts
Browse files Browse the repository at this point in the history
Signed-off-by: mramotar <[email protected]>
  • Loading branch information
matt-ramotar committed Jan 7, 2024
1 parent 025a646 commit fcf6fc0
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
1 change: 0 additions & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ plugins {
id("org.jetbrains.kotlinx.kover")
`maven-publish`
id("kotlinx-atomicfu")
id("org.jetbrains.compose") version("1.5.1")
}

kotlin {
Expand Down
18 changes: 16 additions & 2 deletions paging/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,22 @@ kotlin {
}

android {

sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
compileSdk = 33

sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
defaultConfig {
minSdk = 24
}

lint {
disable += "ComposableModifierFactory"
disable += "ModifierFactoryExtensionFunction"
disable += "ModifierFactoryReturnType"
disable += "ModifierFactoryUnreferencedReceiver"
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
}

0 comments on commit fcf6fc0

Please sign in to comment.