Hi! I added FirebaseAuth to my project with this c...
# ios
c
Hi! I added FirebaseAuth to my project with this code:
Copy code
cocoapods {
        ios.deploymentTarget = "13.5"

        pod("FirebaseAuth") {
            version = "10.16.0"
        }

        version = "1.0"
        summary = ""
        homepage = ""

        framework {
            baseName = "ReserveAppFramework"
            isStatic = true
        }
    }
The android studio recognizes the dependency but I still get this error during build:
Copy code
ld: warning: Could not find or use auto-linked framework 'FirebaseAuth': framework 'FirebaseAuth' not found
ld: Undefined symbols:
  _OBJC_CLASS_$_FIRAuth, referenced from:
       in ComposeApp[arm64][2](ComposeApp.framework.o)
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Is there anything I missed?