File tree Expand file tree Collapse file tree 8 files changed +6074
-14
lines changed Expand file tree Collapse file tree 8 files changed +6074
-14
lines changed Original file line number Diff line number Diff line change @@ -174,6 +174,7 @@ target_include_directories(firebase_auth
174
174
${CMAKE_CURRENT_LIST_DIR} /src/include
175
175
PRIVATE
176
176
${FIREBASE_CPP_SDK_ROOT_DIR}
177
+ ${FIREBASE_CPP_SDK_ROOT_DIR} /ios_pod/swift_headers
177
178
${additional_include_DIR}
178
179
)
179
180
target_compile_definitions (firebase_auth
@@ -201,6 +202,7 @@ elseif(IOS)
201
202
POD_NAMES
202
203
FirebaseCore
203
204
FirebaseAuth
205
+ FirebaseAuthInterop/FirebaseAuth/Interop
204
206
)
205
207
if (FIREBASE_XCODE_TARGET_FORMAT STREQUAL "frameworks" )
206
208
set_target_properties (firebase_auth PROPERTIES
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- #import " FIRAdditionalUserInfo.h "
18
- # import " FIRAuthDataResult.h "
17
+ #import < UIKit/UIKit.h >
18
+
19
19
#import " FIRAuthErrors.h"
20
- #import " FIROAuthCredential .h"
20
+ #import " FirebaseAuthInterop/FIRAuthInterop .h"
21
21
#import " FIROptions.h"
22
+ #import " FirebaseAuth-Swift.h"
22
23
23
24
#include " app/src/app_ios.h"
24
25
#include " app/src/assert.h"
Original file line number Diff line number Diff line change 18
18
#define FIREBASE_AUTH_SRC_IOS_COMMON_IOS_H_
19
19
20
20
#import < Foundation/Foundation.h>
21
+ #import < UIKit/UIKit.h>
21
22
22
23
#import " FIRAuth.h"
23
- #import " FIRAuthCredential.h"
24
- #import " FIROAuthProvider.h"
24
+ #import " FirebaseAuthInterop/FIRAuthInterop.h"
25
25
#import " FIRUser.h"
26
- #import " FIRUserInfo.h"
27
- #import " FIRUserMetadata.h"
26
+ #import " FirebaseAuth-Swift.h"
28
27
29
28
#include " app/src/log.h"
30
29
#include " app/src/util_ios.h"
Original file line number Diff line number Diff line change 19
19
#include " auth/src/ios/common_ios.h"
20
20
21
21
#import < GameKit/GameKit.h>
22
+ #import < UIKit/UIKit.h>
22
23
24
+ #import " FirebaseAuthInterop/FIRAuthInterop.h"
23
25
#import " FIREmailAuthProvider.h"
24
26
#import " FIRFacebookAuthProvider.h"
25
27
#import " FIRFederatedAuthProvider.h"
26
28
#import " FIRGameCenterAuthProvider.h"
27
29
#import " FIRGitHubAuthProvider.h"
28
30
#import " FIRGoogleAuthProvider.h"
29
- #import " FIROAuthProvider .h"
31
+ #import " FirebaseAuth-Swift .h"
30
32
31
33
#if FIREBASE_PLATFORM_IOS
32
34
// PhoneAuth is not supported on non-iOS Apple platforms (eg: tvOS).
Original file line number Diff line number Diff line change 17
17
#include " app/src/time.h"
18
18
#include " auth/src/ios/common_ios.h"
19
19
20
- #if FIREBASE_PLATFORM_IOS
21
- #import " FIRPhoneAuthCredential.h"
22
- #endif
23
-
24
20
namespace firebase {
25
21
namespace auth {
26
22
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ set(CMAKE_OSX_ARCHITECTURES arm64 CACHE STRING "")
35
35
set (CMAKE_XCODE_EFFECTIVE_PLATFORMS "-iphoneos" )
36
36
set (CMAKE_XCODE_ATTRIBUTE_CODE_SIGNING_REQUIRED "NO" )
37
37
set (CMAKE_XCODE_ATTRIBUTE_ENABLE_BITCODE "YES" )
38
- set (CMAKE_OSX_DEPLOYMENT_TARGET "8 .0" CACHE STRING "" )
38
+ set (CMAKE_OSX_DEPLOYMENT_TARGET "13 .0" CACHE STRING "" )
39
39
40
40
# skip TRY_COMPILE checks
41
41
set (CMAKE_CXX_COMPILER_WORKS TRUE )
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ set(CMAKE_OSX_ARCHITECTURES x86_64 CACHE STRING "")
17
17
set (CMAKE_XCODE_EFFECTIVE_PLATFORMS "-iphonesimulator" )
18
18
set (CMAKE_XCODE_ATTRIBUTE_CODE_SIGNING_REQUIRED "NO" )
19
19
set (CMAKE_XCODE_ATTRIBUTE_ENABLE_BITCODE "YES" )
20
- set (CMAKE_OSX_DEPLOYMENT_TARGET "8 .0" CACHE STRING "" )
20
+ set (CMAKE_OSX_DEPLOYMENT_TARGET "13 .0" CACHE STRING "" )
21
21
set (IOS_PLATFORM_LOCATION "iPhoneSimulator.platform" )
22
22
23
23
# skip TRY_COMPILE checks
You can’t perform that action at this time.
0 commit comments