Open himanshumistri opened 10 months ago
An workaround would be adding this to :ios module
tasks.register<Copy>("iOSCopyResources") {
from("../shared/src/commonMain/resources")
into("$buildDir/processedResources/iosMain/main")
include("**/*")
}
tasks.matching { it.name == "syncPodComposeResourcesForIos" }.configureEach {
dependsOn(tasks.matching { it.name == "iOSCopyResources" })
}
Below are the steps:-
Check the multiplatform branch
Add a few resources into the .
Now change UI code load the Image.
Try pod install from the iosApp
pod install
Now install app on the ios , It crash with following error.