Parcourir la source

Packaging cleanup.

Peter Andrews il y a 5 ans
Parent
commit
767ca19adf
2 fichiers modifiés avec 4 ajouts et 7 suppressions
  1. 3 4
      GoogleSignIn.podspec
  2. 1 3
      Package.swift

+ 3 - 4
GoogleSignIn.podspec

@@ -7,10 +7,10 @@ The Google Sign-In SDK allows users to sign in with their Google account from th
                        DESC
   s.homepage         = 'https://developers.google.com/identity/sign-in/ios/'
   s.license          = { :type => 'Apache', :file => 'LICENSE' }
-  s.authors          = 'Google, Inc.'
+  s.authors          = 'Google LLC'
   s.source           = {
-    :git => 'https://developers.google.com/identity/sign-in/ios/',
-    :tag => 'CocoaPods-' + s.version.to_s
+    :git => 'https://github.com/google/GoogleSignIn-iOS.git',
+    :tag => s.version.to_s
   }
   ios_deployment_target = '9.0'
   s.ios.deployment_target = ios_deployment_target
@@ -34,7 +34,6 @@ The Google Sign-In SDK allows users to sign in with their Google account from th
   s.dependency 'GTMSessionFetcher/Core', '~> 1.1'
   s.resources = 'GoogleSignIn/Resources/GoogleSignIn.bundle'
   s.pod_target_xcconfig = {
-    'GCC_C_LANGUAGE_STANDARD' => 'c99',
     'GCC_PREPROCESSOR_DEFINITIONS' => 'GID_SDK_VERSION=' + s.version.to_s,
     'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"'
   }

+ 1 - 3
Package.swift

@@ -62,7 +62,5 @@ let package = Package(
         .linkedFramework("UIKit"),
       ]
     )
-  ],
-  cLanguageStandard: .c99,
-  cxxLanguageStandard: CXXLanguageStandard.gnucxx14
+  ]
 )