Skip to content

Commit

Permalink
[gradle] Skip resource configuration for androidLibrary target since …
Browse files Browse the repository at this point in the history
…it is done via AGP
  • Loading branch information
terrakok committed Nov 1, 2024
1 parent 5e60212 commit d112c1c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package org.jetbrains.compose.resources

import com.android.build.api.dsl.KotlinMultiplatformAndroidTarget
import org.gradle.api.Project
import org.gradle.api.provider.Provider
import org.gradle.api.tasks.SourceSet
Expand All @@ -13,7 +14,9 @@ import org.jetbrains.kotlin.gradle.plugin.KotlinPlatformType
import org.jetbrains.kotlin.gradle.plugin.KotlinSourceSet
import org.jetbrains.kotlin.gradle.plugin.KotlinTarget
import org.jetbrains.kotlin.gradle.plugin.extraProperties
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinAndroidTarget
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinJsCompilation
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinMetadataTarget
import org.jetbrains.kotlin.gradle.plugin.mpp.resources.KotlinTargetResourcesPublication
import java.io.File

Expand All @@ -29,13 +32,11 @@ internal fun Project.configureMultimoduleResources(

val moduleIsolationDirectory = config.getModuleResourcesDir(project)

val platformsForSkip = listOf(
KotlinPlatformType.common, KotlinPlatformType.androidJvm
)
kotlinExtension.targets
.matching { target -> target.platformType !in platformsForSkip }
.matching { target -> !target.skipResourcesConfiguration() }
.all { target -> configureTargetResources(target, moduleIsolationDirectory) }


//configure ANDROID resources
onAgpApplied { agpId ->
configureAndroidComposeResources(agpId, moduleIsolationDirectory)
Expand Down Expand Up @@ -92,6 +93,19 @@ private fun Project.configureTargetResources(
}
}

@Suppress("UnstableApiUsage")
private fun KotlinTarget.skipResourcesConfiguration(): Boolean = when {
this is KotlinMetadataTarget -> true

//android resources should be configured via AGP
this is KotlinAndroidTarget -> true

//new AGP library target
project.pluginManager.hasPlugin(AGP_KMP_LIB_ID) && this is KotlinMultiplatformAndroidTarget -> true

else -> false
}

private val platformsForSetupKmpResources = listOf(
KotlinPlatformType.native, KotlinPlatformType.js, KotlinPlatformType.wasm
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -326,13 +326,11 @@ class ResourcesTest : GradlePluginTestBase() {
check.logContains("Configure compose resources with KotlinMultiplatformAndroidComponentsExtension")

val resourcesFiles = sequenceOf(
"assets/composeResources/newagpresources.appmodule.generated.resources/values/strings.commonMain.cvr",
"assets/composeResources/newagpresources.featuremodule.generated.resources/values/strings.commonMain.cvr"
"composeResources/newagpresources.appmodule.generated.resources/values/strings.commonMain.cvr",
"composeResources/newagpresources.featuremodule.generated.resources/values/strings.commonMain.cvr"
)
val apk = file("appModule/build/outputs/apk/debug/appModule-debug.apk")

//isAndroid = false, because the new AGP has an issue with duplicate resources for now
checkResourcesZip(apk, resourcesFiles, false)
checkResourcesZip(apk, resourcesFiles, true)
}
}
}
Expand Down

0 comments on commit d112c1c

Please sign in to comment.