Ruben Quadros
05/04/2025, 6:23 AMGoogleSignIn
dependency via cocoapods. Now when I try to build the iosApp
I get the following error:
ld: framework 'AppAuth' not found
Any idea what needs to be done to fix this? Thanks!François
05/04/2025, 6:25 AMblakelee
05/06/2025, 3:26 PMbuilds.gradle.kts
block looks like this
cocoapods {
// !!Do not forget deployment target or this will break!!
ios.deploymentTarget = "15.3"
framework {
baseName = "Login"
}
homepage = "yourhomepage.com"
summary = "Google Sign In on iOS"
version = "1.0"
source = "<https://cdn.cocoapods.org>"
name = "Login"
// This is added so that on every sync the podspec doesn't get overwritten
// If we need to update the podspec then remove this line and then add back in the
// prepare_command which automatically generates the dummy framework
noPodspec()
pod("GoogleSignIn", version = "8.0.0")
}
Cocoapods integration was my nightmare but once it’s working there’s been no issues