Hello. I have a problem, i am trying to import MSA...
# multiplatform
m
Hello. I have a problem, i am trying to import MSAL using cocoapods
Copy code
pod("MSAL") {
    version = "1.4.2"
    extraOpts += listOf("-compiler-option", "-fmodules")
}
pod("MSAL/native-auth") {
    version = "1.4.2"
    extraOpts += listOf("-compiler-option", "-fmodules")
}
When i run the project from Xcode it gives me an error about trying to copy build files from PromiseObjC and nanopb after being generated by gradle cocoapod plugin as dependencies of MSAL. When i checked the build folder, the folders were present but not the search path that was requested. To add context: I am also using firebase and they seem to have similar dependencies which might be causing issues.
I solved it by creating a new module with MSAL cocopods only and then it worked. will file a bug report tomorrow
👍 1