I am trying to integrate MSAL cocoapod lib into my...
# compose-ios
s
I am trying to integrate MSAL cocoapod lib into my Kotlin multiplatform mobile app. I have double checked everything and followed all the steps to the T. I am getting following set of errors. It looks like Xcode build is unable to find the MSAL library even though FRAMEWORK_SEARCH_PATHS value in build-settings-iosSimulator-MSAL.properties is correct and MSAL framework is generated at that location. Any pointers?
Could not find or use auto-linked framework 'MSAL': framework 'MSAL' not found
Could not parse or use implicit file '/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/SwiftUICore.framework/SwiftUICore.tbd': cannot link directly with 'SwiftUICore' because product being built is not an allowed client of it
Undefined symbol: _OBJC_CLASS_$_MSALInteractiveTokenParameters
Undefined symbol: _OBJC_CLASS_$_MSALResult
Undefined symbol: _OBJC_CLASS_$_MSALWebviewParameters
Linker command failed with exit code 1 (use -v to see invocation)
Here are my other configuration - 1. Android Studio Narwhal 4 2. XCode 16.2 3. kotlin = "2.2.21" 4. agp = "8.13.0" 5. composeMultiplatform = "1.9.2" 6. MSAL - "2.3.0"