Hey, people! I’m getting a “Undefined symbols for ...
# multiplatform
n
Hey, people! I’m getting a “Undefined symbols for architecture x86_64” when compiling my multiplatform project on Xcode. The symbols that are not found are from a Pod that is imported like this in the `gradle.kts`:
Copy code
pod("FirebaseAuth") {
    extraOpts = listOf("-compiler-option", "-DNS_FORMAT_ARGUMENT(A)=")
}
I’m using Intel processor Mac for this. Any idea? 🙏