Rafael Moreira
03/31/2025, 1:52 AM* What went wrong:
Execution failed for task ':composeApp:processDebugResources'.
> A failure occurred while executing com.android.build.gradle.internal.res.LinkApplicationAndroidResourcesTask$TaskAction
> Android resource linking failed
ERROR: /Users/rafamsilva/AndroidStudioProjects/Forgo/composeApp/src/androidMain/AndroidManifest.xml:4:5-22:19: AAPT: error: resource string/app_name (aka com.feeltheboard.forgo:string/app_name) not found.
Anyone?Chiranjeevi Pandey
03/31/2025, 2:02 AMandroid:label
attribute to fix the build issue. It’s possible to access the resources declared in commonMain
from androidMain
in code but I haven’t tried myself accessing the resources in xml file for eg: on manifest.xml. For other use cases, I think this doc should help: https://www.jetbrains.com/help/kotlin-multiplatform-dev/compose-multiplatform-resources-usage.html#stringsRafael Moreira
03/31/2025, 2:48 AMChiranjeevi Pandey
03/31/2025, 2:58 AMandroidMain
source set. Hopefully, we will get these features later for multiplatform.