Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
react-native-fcm
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Jira
Jira
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
ym
react-native-fcm
Commits
f6614624
Commit
f6614624
authored
Mar 05, 2018
by
Libin Lu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add frameworks
parent
8ed569d8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
84 additions
and
2 deletions
+84
-2
Examples/simple-fcm-client/ios/Frameworks/Firebase.h
Examples/simple-fcm-client/ios/Frameworks/Firebase.h
+68
-0
Examples/simple-fcm-client/ios/Frameworks/module.modulemap
Examples/simple-fcm-client/ios/Frameworks/module.modulemap
+4
-0
Examples/simple-fcm-client/ios/SimpleFcmClient.xcodeproj/project.pbxproj
...-fcm-client/ios/SimpleFcmClient.xcodeproj/project.pbxproj
+12
-2
No files found.
Examples/simple-fcm-client/ios/Frameworks/Firebase.h
0 → 100644
View file @
f6614624
#import <FirebaseAnalytics/FirebaseAnalytics.h>
#import <FirebaseCore/FirebaseCore.h>
#if !defined(__has_include)
#error "Firebase.h won't import anything if your compiler doesn't support __has_include. Please \
import the headers individually."
#else
#if __has_include(<FirebaseAppIndexing/FirebaseAppIndexing.h>)
#import <FirebaseAppIndexing/FirebaseAppIndexing.h>
#endif
#if __has_include(<FirebaseAuth/FirebaseAuth.h>)
#import <FirebaseAuth/FirebaseAuth.h>
#endif
#if __has_include(<FirebaseCrash/FirebaseCrash.h>)
#import <FirebaseCrash/FirebaseCrash.h>
#endif
#if __has_include(<FirebaseDatabase/FirebaseDatabase.h>)
#import <FirebaseDatabase/FirebaseDatabase.h>
#endif
#if __has_include(<FirebaseDynamicLinks/FirebaseDynamicLinks.h>)
#import <FirebaseDynamicLinks/FirebaseDynamicLinks.h>
#endif
#if __has_include(<FirebaseFirestore/FirebaseFirestore.h>)
#import <FirebaseFirestore/FirebaseFirestore.h>
#endif
#if __has_include(<FirebaseInstanceID/FirebaseInstanceID.h>)
#import <FirebaseInstanceID/FirebaseInstanceID.h>
#endif
#if __has_include(<FirebaseInvites/FirebaseInvites.h>)
#import <FirebaseInvites/FirebaseInvites.h>
#endif
#if __has_include(<FirebaseMessaging/FirebaseMessaging.h>)
#import <FirebaseMessaging/FirebaseMessaging.h>
#endif
#if __has_include(<FirebasePerformance/FirebasePerformance.h>)
#import <FirebasePerformance/FirebasePerformance.h>
#endif
#if __has_include(<FirebaseRemoteConfig/FirebaseRemoteConfig.h>)
#import <FirebaseRemoteConfig/FirebaseRemoteConfig.h>
#endif
#if __has_include(<FirebaseStorage/FirebaseStorage.h>)
#import <FirebaseStorage/FirebaseStorage.h>
#endif
#if __has_include(<GoogleMobileAds/GoogleMobileAds.h>)
#import <GoogleMobileAds/GoogleMobileAds.h>
#endif
#if __has_include(<Fabric/Fabric.h>)
#import <Fabric/Fabric.h>
#endif
#if __has_include(<Crashlytics/Crashlytics.h>)
#import <Crashlytics/Crashlytics.h>
#endif
#endif // defined(__has_include)
Examples/simple-fcm-client/ios/Frameworks/module.modulemap
0 → 100644
View file @
f6614624
module Firebase {
header "Firebase.h"
export *
}
Examples/simple-fcm-client/ios/SimpleFcmClient.xcodeproj/project.pbxproj
View file @
f6614624
...
...
@@ -1163,6 +1163,10 @@
"DEBUG=1"
,
"$(inherited)"
,
);
HEADER_SEARCH_PATHS
=
(
"$(inherited)"
,
"\"${PODS_ROOT}/Headers/Public\""
,
);
INFOPLIST_FILE
=
SimpleFcmClientTests/Info.plist
;
IPHONEOS_DEPLOYMENT_TARGET
=
8.0
;
LD_RUNPATH_SEARCH_PATHS
=
"$(inherited) @executable_path/Frameworks @loader_path/Frameworks"
;
...
...
@@ -1174,6 +1178,7 @@
PRODUCT_BUNDLE_IDENTIFIER
=
"org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"
;
PRODUCT_NAME
=
"$(TARGET_NAME)"
;
TEST_HOST
=
"$(BUILT_PRODUCTS_DIR)/SimpleFcmClient.app/SimpleFcmClient"
;
USER_HEADER_SEARCH_PATHS
=
"$(PROJECT_DIR)/Frameworks"
;
};
name
=
Debug
;
};
...
...
@@ -1188,6 +1193,10 @@
"$(inherited)"
,
"$(PROJECT_DIR)/Frameworks"
,
);
HEADER_SEARCH_PATHS
=
(
"$(inherited)"
,
"\"${PODS_ROOT}/Headers/Public\""
,
);
INFOPLIST_FILE
=
SimpleFcmClientTests/Info.plist
;
IPHONEOS_DEPLOYMENT_TARGET
=
8.0
;
LD_RUNPATH_SEARCH_PATHS
=
"$(inherited) @executable_path/Frameworks @loader_path/Frameworks"
;
...
...
@@ -1199,6 +1208,7 @@
PRODUCT_BUNDLE_IDENTIFIER
=
"org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"
;
PRODUCT_NAME
=
"$(TARGET_NAME)"
;
TEST_HOST
=
"$(BUILT_PRODUCTS_DIR)/SimpleFcmClient.app/SimpleFcmClient"
;
USER_HEADER_SEARCH_PATHS
=
"$(PROJECT_DIR)/Frameworks"
;
};
name
=
Release
;
};
...
...
@@ -1234,7 +1244,7 @@
);
PRODUCT_BUNDLE_IDENTIFIER
=
com.myidentifi.fcm
;
PRODUCT_NAME
=
SimpleFcmClient
;
USER_HEADER_SEARCH_PATHS
=
./SimpleFcmClient/
;
USER_HEADER_SEARCH_PATHS
=
"$(PROJECT_DIR)/Frameworks $(PROJECT_DIR)"
;
VERSIONING_SYSTEM
=
"apple-generic"
;
};
name
=
Debug
;
...
...
@@ -1270,7 +1280,7 @@
);
PRODUCT_BUNDLE_IDENTIFIER
=
com.myidentifi.fcm
;
PRODUCT_NAME
=
SimpleFcmClient
;
USER_HEADER_SEARCH_PATHS
=
./SimpleFcmClient/
;
USER_HEADER_SEARCH_PATHS
=
"$(PROJECT_DIR)/Frameworks $(PROJECT_DIR)"
;
VERSIONING_SYSTEM
=
"apple-generic"
;
};
name
=
Release
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment