Hello everyone, I was working on integrating the e...
# multiplatform
h
Hello everyone, I was working on integrating the existing code in iOS ad android with KMP. I'm able to do that and it runs fine on the iOS simulator but while trying to run the app on an iOS device, xcode throws this error while building the app:
Copy code
> Task :kotlinmultiplatformsharedmodule:compileKotlinIosArm64 UP-TO-DATE
> Task :kotlinmultiplatformsharedmodule:linkDebugFrameworkIosArm64 UP-TO-DATE
> Task :kotlinmultiplatformsharedmodule:assembleDebugAppleFrameworkForXcodeIosArm64 UP-TO-DATE
> Task :kotlinmultiplatformsharedmodule:embedAndSignAppleFrameworkForXcode FAILED
error: A problem was found with the configuration of task ':kotlinmultiplatformsharedmodule:embedAndSignAppleFrameworkForXcode' (type 'FrameworkCopy').

FAILURE: Build failed with an exception.

* What went wrong:
A problem was found with the configuration of task ':kotlinmultiplatformsharedmodule:embedAndSignAppleFrameworkForXcode' (type 'FrameworkCopy').
 - In plugin 'org.jetbrains.kotlin.gradle.scripting.internal.ScriptingKotlinGradleSubplugin' type 'org.jetbrains.kotlin.gradle.plugin.mpp.apple.FrameworkCopy' property 'sign' doesn't have a configured value.
   
  Reason: This property isn't marked as optional and no value has been configured.
   
  Possible solutions:
   1. Assign a value to 'sign'.
   2. Mark property 'sign' as optional.
   
  Please refer to <https://docs.gradle.org/7.6/userguide/validation_problems.html#value_not_set> for more details about this problem.
Can somebody please help...thanks.