| Commit message (Collapse) | Author | Age |
| |
|
| |
|
|
|
|
| |
Qualify all cross-pod imports of FirebaseCore headers
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Enumerator using generic. Cleaner for .. in .. loop in Swift
So
for childSnapshot in snapshot.children {
you don't need to cast each child. Each cild is already known as DataSnapshot
* Update FIRDataSnapshot.h
* Update FIRMutableData.h
* Update FIRMutableData.m
|
|
|
|
|
| |
* Adding Multi-Resource support to the Firebase iOS SDK.
This CL also makes RepoInfo hashable and simplifies RepoManager based on this.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Delete an app from Database when deleted in Core.
When a FIRApp is deleted in Core, it should also be deleted from
the instances array in Database.
See #160 for more details.
* Add tests for deleting databases.
* Add call to clean up deleted FIRDatabase instance.
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Move Auth notification constant into Core.
SDKs that want to listen for the internal Auth notifications needed
to copy the notification strings to their own SDK instead of relying
on Auth's definition in order to avoid a dependency on Auth. By moving
them to Core, SDKs can use the constants without taking on another
dependency.
* Remove Auth stub, add app instance to notification.
|
| |
|
|
|
|
|
|
| |
* Add travis trailing whitespace check
* Remove trailing white space
|
| |
|
| |
|
|
|
| |
FIRDatabase's initializer is inherited from NSObject and causes subtle bugs if called. See https://github.com/firebase/firebase-ios-sdk/issues/31
|
| |
|
|
|