You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+33-8Lines changed: 33 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,38 +46,63 @@ In order to run the sample apps and integration tests, you'll need valid
46
46
47
47
Some sample apps like Firebase Messaging ([Example/Messaging/App](Example/Messaging/App)) require special Apple capabilities, and you will have to change the sample app to use a unique bundle identifier that you can control in your own Apple Developer account.
48
48
49
-
See the sections below for any special instructions for those SDKs.
49
+
## Specific Component Instructions
50
+
See the sections below for any special instructions for those components.
50
51
51
-
## Firebase Auth
52
+
###Firebase Auth
52
53
53
54
If you're doing specific Firebase Auth development, see
54
55
[AuthSamples/README.md](AuthSamples/README.md) for instructions about
55
56
building and running the FirebaseAuth pod along with various samples and tests.
56
57
57
-
## Firebase Database
58
+
###Firebase Database
58
59
59
60
To run the Database Integration tests, make your database authentication rules
Push notifications can only be delivered to specially provisioned App IDs in the developer portal. In order to actually test receiving push notifications, you will need to:
72
73
73
74
1. Change the bundle identifier of the sample app to something you own in your Apple Developer account, and enable that App ID for push notifications.
74
-
2. You'll also need to [upload your APNs Provider Authentication token or certificate to the Firebase Console](https://firebase.google.com/docs/cloud-messaging/ios/certs) at **Project Settings > Cloud Messaging > [Your Firebase App]**.
75
+
2. You'll also need to [upload your APNs Provider Authentication Key or certificate to the Firebase Console](https://firebase.google.com/docs/cloud-messaging/ios/certs) at **Project Settings > Cloud Messaging > [Your Firebase App]**.
75
76
3. Ensure your iOS device is added to your Apple Developer portal as a test device.
76
77
77
-
### iOS Simulator
78
+
####iOS Simulator
78
79
79
80
The iOS Simulator cannot register for remote notifications, and will not receive push notifications. In order to receive push notifications, you'll have to follow the steps above and run the app on a physical device.
80
81
82
+
## Community Supported Efforts
83
+
84
+
We've seen an amazing amount of interest and contributions to improve the Firebase SDKs, and we are very grateful! We'd like to empower as many developers as we can to be able to use Firebase and participate in the Firebase community.
85
+
86
+
Note that if you are using CocoaPods and using the FirebaseDev podspec (the one in this repo), you cannot bring in Pods from the official Firebase podspec, because of duplicated symbol conflicts. If you're not using one of the open-source SDKs in this repo for development purposes, we recommend using the regular Firebase pods for the best experience.
87
+
88
+
To get started using the FirebaseDev SDKs, here is a typical Podfile:
89
+
90
+
```
91
+
use_frameworks!
92
+
93
+
target 'MyAppTarget' do
94
+
platform :ios, '8.0'
95
+
pod 'FirebaseDev', :git => 'https://github.com/firebase/firebase-ios-sdk.git'
96
+
end
97
+
```
98
+
Replace `MyAppTarget` with the name of the target in your Xcode project.
99
+
100
+
### macOS
101
+
FirebaseAuth, FirebaseCore, FirebaseDatabase and FirebaseStorage now compile, run unit tests, and work on macOS, thanks to contributions from the community. There are a few tweaks needed, like ensuring iOS-only or macOS-only code is correctly guarded with checks for `TARGET_OS_IOS` and `TARGET_OS_OSX`.
102
+
103
+
Keep in mind that macOS is not officially supported by Firebase, and this repository is actively developed primarily for iOS. While we can catch basic unit test issues with Travis, there may be some changes where the SDK no longer works as expected on macOS. If you encounter this, please [file an issue](https://github.com/firebase/firebase-ios-sdk/issues) for it.
104
+
105
+
81
106
## Contributing
82
107
83
108
See [Contributing](CONTRIBUTING.md) for more information on contributing to the Firebase
0 commit comments