mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 08:17:04 +05:30
gradle: resolve noisy build warnings
This commit is contained in:
parent
d12b902ca7
commit
83d64ecea9
4 changed files with 13 additions and 1 deletions
|
@ -33,6 +33,9 @@ kotlin {
|
|||
implementation(libs.coil.compose)
|
||||
}
|
||||
dependsOn(sourceSets["androidAndroidTestRelease"])
|
||||
dependsOn(sourceSets["androidTestFixtures"])
|
||||
dependsOn(sourceSets["androidTestFixturesDebug"])
|
||||
dependsOn(sourceSets["androidTestFixturesRelease"])
|
||||
}
|
||||
sourceSets["desktopMain"].apply { dependencies { implementation(libs.kamel.image) } }
|
||||
}
|
||||
|
|
|
@ -13,6 +13,9 @@ kotlin {
|
|||
sourceSets["androidMain"].apply {
|
||||
dependencies { implementation(libs.sqldelight.androidDriver) }
|
||||
dependsOn(sourceSets["androidAndroidTestRelease"])
|
||||
dependsOn(sourceSets["androidTestFixtures"])
|
||||
dependsOn(sourceSets["androidTestFixturesDebug"])
|
||||
dependsOn(sourceSets["androidTestFixturesRelease"])
|
||||
}
|
||||
sourceSets["desktopMain"].apply { dependencies { implementation(libs.sqldelight.jvmDriver) } }
|
||||
sourceSets["desktopTest"].apply {
|
||||
|
|
|
@ -54,7 +54,7 @@ android.defaults.buildfeatures.resvalues=false
|
|||
android.defaults.buildfeatures.shaders=false
|
||||
|
||||
# Disable warnings about unsupported features, we know what we're doing
|
||||
android.suppressUnsupportedOptionWarnings=android.enableR8.fullMode,android.enableResourceOptimizations,android.nonTransitiveRClass,android.suppressUnsupportedOptionWarnings
|
||||
android.suppressUnsupportedOptionWarnings=android.enableR8.fullMode,android.enableResourceOptimizations,android.nonTransitiveRClass,android.suppressUnsupportedOptionWarnings,android.sdk.channel
|
||||
|
||||
# Maven publishing
|
||||
GROUP=com.github.android-password-store
|
||||
|
|
|
@ -10,6 +10,12 @@ plugins {
|
|||
kotlin {
|
||||
android()
|
||||
jvm()
|
||||
sourceSets["androidMain"].apply {
|
||||
dependsOn(sourceSets["androidAndroidTestRelease"])
|
||||
dependsOn(sourceSets["androidTestFixtures"])
|
||||
dependsOn(sourceSets["androidTestFixturesDebug"])
|
||||
dependsOn(sourceSets["androidTestFixturesRelease"])
|
||||
}
|
||||
sourceSets["commonMain"].apply {
|
||||
dependencies { implementation(libs.kotlinx.serialization.core) }
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue