Pod::Spec.new do |s| s.name = 'FirebaseGoogleAuthUI' s.version = '12.1.1' s.summary = 'Google authentication for FirebaseAuthUI.' s.homepage = 'https://github.com/firebase/FirebaseUI-iOS' s.license = { :type => 'Apache 2.0', :file => 'LICENSE' } s.source = { :git => 'https://github.com/firebase/FirebaseUI-iOS.git', :tag => 'v' + s.version.to_s} s.author = 'Firebase' s.platform = :ios s.ios.deployment_target = '10.0' s.ios.framework = 'UIKit' s.requires_arc = true s.cocoapods_version = '>= 1.8.0' s.static_framework = true # Required since GoogleSignIn is a static binary. s.pod_target_xcconfig = { 'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"', } s.public_header_files = 'FirebaseGoogleAuthUI/Sources/Public/FirebaseGoogleAuthUI/*.h' s.source_files = 'FirebaseGoogleAuthUI/Sources/**/*.{h,m}' s.dependency 'FirebaseAuth' s.dependency 'FirebaseCore' s.dependency 'FirebaseAuthUI' s.dependency 'GoogleSignIn', '~> 6.0' s.resource_bundles = { 'FirebaseGoogleAuthUI' => ['FirebaseGoogleAuthUI/Sources/{Resources,Strings}/*.{png,lproj}'] } end