Hey, I’m trying to develop an app using compose multiplatform and KMM, One of the basic functionalit...
a
Hey, I’m trying to develop an app using compose multiplatform and KMM, One of the basic functionality is SingIn with Google so I got it working fine in Android, and when Implemented it in iOS by adding
Copy code
pod("GoogleSignIn")
It didn’t work when I tried to sync my project and I got the following
Copy code
The following build commands failed:
	
CopyPNGFile /Users/.../shared/build/cocoapods/synthetic/IOS/build/Release-iphonesimulator/GoogleSignIn/GoogleSignIn.bundle/google@2x.png /Users/.../shared/build/cocoapods/synthetic/IOS/Pods/GoogleSignIn/GoogleSignIn/Sources/Resources/google@2x.png (in target 'GoogleSignIn-GoogleSignIn' from project 'Pods')
	
CopyPNGFile /Users/.../shared/build/cocoapods/synthetic/IOS/build/Release-iphonesimulator/GoogleSignIn/GoogleSignIn.bundle/google@3x.png /Users/.../shared/build/cocoapods/synthetic/IOS/Pods/GoogleSignIn/GoogleSignIn/Sources/Resources/google@3x.png (in target 'GoogleSignIn-GoogleSignIn' from project 'Pods')
	
CopyPNGFile /Users/.../shared/build/cocoapods/synthetic/IOS/build/Release-iphonesimulator/GoogleSignIn/GoogleSignIn.bundle/google.png /Users/.../shared/build/cocoapods/synthetic/IOS/Pods/GoogleSignIn/GoogleSignIn/Sources/Resources/google.png (in target 'GoogleSignIn-GoogleSignIn' from project 'Pods')
(3 failures)
but when I tried to run the iOS app directly it works without giving me any issues and I can’t sync on Android studio due to the above error, and when I tried to change pod(“GoogleSignIn”, linkOnly = true) then I can get the project synced but iOS stopped working. I’m using Kotlin 1.8.22 and Android Studio Flamingo | 2022.2.1 Patch 2 Any thoughts?
1
a
Hi, importing this pod works for me without any additional configuration (checked 1.8.22 and 1.9.0). Could you try working out a minimal sample with the error?