Skip to content

Commit ce10cfe

Browse files
committed
egg
1 parent 2d3122c commit ce10cfe

File tree

7 files changed

+85
-73
lines changed

7 files changed

+85
-73
lines changed

GoogleSignIn-iOS/GoogleSignIn/Sources/GIDSignInResult.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
#import "GoogleSignIn/Sources/Public/GoogleSignIn/GIDSignInResult.h"
17+
#import "GoogleSignIn-iOS/GoogleSignIn/Sources/Public/GoogleSignIn/GIDSignInResult.h"
1818

1919
#import "GoogleSignIn/Sources/GIDSignInResult_Private.h"
2020
#import "GoogleSignIn/Sources/Public/GoogleSignIn/GIDGoogleUser.h"

example/ios/GoogleAuthExample.xcodeproj/project.pbxproj

+66-66
Large diffs are not rendered by default.

example/ios/Podfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1436,7 +1436,7 @@ SPEC CHECKSUMS:
14361436
React-jsitracing: 0fa7f78d8fdda794667cb2e6f19c874c1cf31d7e
14371437
React-logger: 29fa3e048f5f67fe396bc08af7606426d9bd7b5d
14381438
React-Mapbuffer: bf56147c9775491e53122a94c423ac201417e326
1439-
react-native-google-auth: aa28596d39bc16dad5089b8ab537cd9f1fb48df6
1439+
react-native-google-auth: 41d2e420afaace7d82466eccda564ce482e0fc35
14401440
React-nativeconfig: 9f223cd321823afdecf59ed00861ab2d69ee0fc1
14411441
React-NativeModulesApple: ff7efaff7098639db5631236cfd91d60abff04c0
14421442
React-perflogger: 32ed45d9cee02cf6639acae34251590dccd30994

ios/GoogleAuth-Bridging-Header.h

+9
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
11
#import <React/RCTBridgeModule.h>
22
#import <React/RCTViewManager.h>
3+
#import "GIDAppCheckError.h"
4+
#import "GIDConfiguration.h"
5+
#import "GIDGoogleUser.h"
6+
#import "GIDProfileData.h"
7+
#import "GIDSignIn.h"
8+
#import "GIDSignInButton.h"
9+
#import "GIDSignInResult.h"
10+
#import "GIDToken.h"
11+
#import "GoogleSignIn.h"

ios/GoogleSignInAppDelegate.swift

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
import Foundation
88
import UIKit
99

10-
1110
@objc(GoogleSignInAppDelegate)
1211
public class GoogleSignInAppDelegate: NSObject {
1312

ios/URLHandler.swift

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
import Foundation
99
import React
10+
import GoogleSignIn
1011

1112
@objc(UrlHandler)
1213
class UrlHandler: NSObject, RCTBridgeModule {

react-native-google-auth.podspec

+7-4
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,25 @@ Pod::Spec.new do |s|
1212
s.authors = package["author"]
1313

1414
s.platforms = { :ios => "10.0" }
15-
s.source = { :git => "https://github.com/GNUGradyn/react-native-google-auth.git", :tag => "#{s.version}" }
15+
s.source = { :git => "https://github.com/GNUGradyn/react-native-google-auth.git" }
1616

1717
s.source_files = "ios/**/*.{h,m,mm,swift}", "GoogleSignIn-iOS/GoogleSignIn/Sources/**/*.{h,m,mm,swift}"
1818
s.public_header_files = "GoogleSignIn-iOS/GoogleSignIn/Sources/Public/GoogleSignIn/*.h"
1919
s.private_header_files = "GoogleSignIn-iOS/GoogleSignIn/Sources/**/*.h"
20-
20+
2121
s.resource_bundle = {
2222
'GoogleSignIn' => ['GoogleSignIn-iOS/GoogleSignIn/Sources/{Resources,Strings}/*']
2323
}
2424

2525
# We can remove this when the actual pod is merged. the first 2 are for the finished pod, the second two are for the example app which is relative to the repo source
2626
s.pod_target_xcconfig = {
27-
"HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/#{s.name}/GoogleSignIn-iOS/GoogleSignIn/Sources/**\" \"GoogleSignIn-iOS/GoogleSignIn/Sources/**\""
27+
'HEADER_SEARCH_PATHS' => '"$(inherited)" "$(PODS_ROOT)/GoogleSignIn-iOS/GoogleSignIn/Sources/Public/GoogleSignIn" "$(PODS_ROOT)/GoogleSignIn-iOS/GoogleSignIn/Sources"'
2828
}
29-
3029

30+
s.user_target_xcconfig = {
31+
'HEADER_SEARCH_PATHS' => '"$(inherited)" "$(PODS_ROOT)/GoogleSignIn-iOS/GoogleSignIn/Sources/Public/GoogleSignIn" "$(PODS_ROOT)/GoogleSignIn-iOS/GoogleSignIn/Sources"'
32+
}
33+
3134
# Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.
3235
# See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79.
3336
if respond_to?(:install_modules_dependencies, true)

0 commit comments

Comments
 (0)