├── .classpath ├── .gitignore ├── .project ├── LICENSE ├── README.md ├── android ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.jdt.apt.core.prefs │ └── org.eclipse.jdt.core.prefs ├── Resources │ └── README.md ├── build.properties ├── build.xml ├── java-sources.txt ├── lib │ ├── README │ ├── com.google.android.gms.measurement.impl-9.4.0.jar │ ├── com.google.firebase-9.4.0.jar │ ├── com.google.firebase.auth.api-9.4.0.jar │ ├── com.google.firebase.auth.common-9.4.0.jar │ ├── com.google.firebase.auth.module-9.4.0.jar │ ├── com.google.firebase.crash-9.4.0.jar │ ├── com.google.firebase.database-9.4.0.jar │ ├── com.google.firebase.database.connection-9.4.0.jar │ ├── com.google.firebase.iid-9.4.0.jar │ ├── com.google.firebase.messaging-9.4.0.jar │ ├── com.google.firebase.remoteconfig-9.4.0.jar │ ├── com.google.firebase.storage-9.4.0.jar │ └── renamer.js ├── manifest ├── platform │ └── README.md ├── scripts │ ├── global_tracker.xml │ ├── import-google-services.js │ ├── node_modules │ │ ├── fs │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── object-path │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── benchmark.js │ │ │ ├── bower.json │ │ │ ├── component.json │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test.js │ │ └── underscore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── underscore-min.js │ │ │ ├── underscore-min.map │ │ │ └── underscore.js │ └── values.xml ├── src │ └── ti │ │ └── firebase │ │ ├── ExampleProxy.java │ │ └── TiFirebaseModule.java └── timodule.xml ├── assets └── README ├── documentation └── index.md ├── example └── app.js ├── iphone ├── .gitignore ├── Classes │ ├── TiFirebaseAnalyticsModule.h │ ├── TiFirebaseAnalyticsModule.m │ ├── TiFirebaseAuthModule.h │ ├── TiFirebaseAuthModule.m │ ├── TiFirebaseModule.h │ ├── TiFirebaseModule.m │ ├── TiFirebaseModuleAssets.h │ └── TiFirebaseModuleAssets.m ├── Resources │ └── README.md ├── TiFirebase_Prefix.pch ├── build.py ├── manifest ├── metadata.json ├── module.modulemap ├── module.xcconfig ├── platform │ ├── Firebase.h │ ├── FirebaseAnalytics.framework │ │ ├── FirebaseAnalytics │ │ ├── Headers │ │ │ ├── FIRAnalytics+AppDelegate.h │ │ │ ├── FIRAnalytics.h │ │ │ ├── FIRAnalyticsConfiguration.h │ │ │ ├── FIRApp.h │ │ │ ├── FIRConfiguration.h │ │ │ ├── FIREventNames.h │ │ │ ├── FIROptions.h │ │ │ ├── FIRParameterNames.h │ │ │ ├── FIRUserPropertyNames.h │ │ │ └── FirebaseAnalytics.h │ │ └── Modules │ │ │ └── module.modulemap │ ├── FirebaseAuth.framework │ │ ├── FirebaseAuth │ │ ├── Headers │ │ │ ├── FIRAuth.h │ │ │ ├── FIRAuthCredential.h │ │ │ ├── FIRAuthErrors.h │ │ │ ├── FIREmailPasswordAuthProvider.h │ │ │ ├── FIRFacebookAuthProvider.h │ │ │ ├── FIRGitHubAuthProvider.h │ │ │ ├── FIRGoogleAuthProvider.h │ │ │ ├── FIRTwitterAuthProvider.h │ │ │ ├── FIRUser.h │ │ │ ├── FIRUserInfo.h │ │ │ ├── FirebaseAuth.h │ │ │ └── FirebaseAuthVersion.h │ │ └── Modules │ │ │ └── module.modulemap │ ├── FirebaseCore.framework │ │ ├── FirebaseCore │ │ ├── Headers │ │ │ ├── FIRAnalyticsConfiguration.h │ │ │ ├── FIRApp.h │ │ │ ├── FIRConfiguration.h │ │ │ ├── FIRLoggerLevel.h │ │ │ ├── FIROptions.h │ │ │ └── FirebaseCore.h │ │ └── Modules │ │ │ └── module.modulemap │ ├── FirebaseInstanceID.framework │ │ ├── FirebaseInstanceID │ │ ├── Headers │ │ │ ├── FIRInstanceID.h │ │ │ └── FirebaseInstanceID.h │ │ └── Modules │ │ │ └── module.modulemap │ ├── GTMSessionFetcher.framework │ │ └── GTMSessionFetcher │ ├── GoogleToolboxForMac.framework │ │ └── GoogleToolboxForMac │ ├── README.md │ └── module.modulemap ├── ti-firebase.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── cribe.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── ti-firebase.xcscheme │ └── xcuserdata │ │ └── cribe.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── timodule.xml └── titanium.xcconfig └── ti.firebase-iphone-1.3.1.zip /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/.project -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/README.md -------------------------------------------------------------------------------- /android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/.classpath -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.jdt.apt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/.settings/org.eclipse.jdt.apt.core.prefs -------------------------------------------------------------------------------- /android/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /android/Resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/Resources/README.md -------------------------------------------------------------------------------- /android/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/build.properties -------------------------------------------------------------------------------- /android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/build.xml -------------------------------------------------------------------------------- /android/java-sources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/java-sources.txt -------------------------------------------------------------------------------- /android/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/lib/README -------------------------------------------------------------------------------- /android/lib/com.google.android.gms.measurement.impl-9.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/lib/com.google.android.gms.measurement.impl-9.4.0.jar -------------------------------------------------------------------------------- /android/lib/com.google.firebase-9.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/lib/com.google.firebase-9.4.0.jar -------------------------------------------------------------------------------- /android/lib/com.google.firebase.auth.api-9.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/lib/com.google.firebase.auth.api-9.4.0.jar -------------------------------------------------------------------------------- /android/lib/com.google.firebase.auth.common-9.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/lib/com.google.firebase.auth.common-9.4.0.jar -------------------------------------------------------------------------------- /android/lib/com.google.firebase.auth.module-9.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/lib/com.google.firebase.auth.module-9.4.0.jar -------------------------------------------------------------------------------- /android/lib/com.google.firebase.crash-9.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/lib/com.google.firebase.crash-9.4.0.jar -------------------------------------------------------------------------------- /android/lib/com.google.firebase.database-9.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/lib/com.google.firebase.database-9.4.0.jar -------------------------------------------------------------------------------- /android/lib/com.google.firebase.database.connection-9.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/lib/com.google.firebase.database.connection-9.4.0.jar -------------------------------------------------------------------------------- /android/lib/com.google.firebase.iid-9.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/lib/com.google.firebase.iid-9.4.0.jar -------------------------------------------------------------------------------- /android/lib/com.google.firebase.messaging-9.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/lib/com.google.firebase.messaging-9.4.0.jar -------------------------------------------------------------------------------- /android/lib/com.google.firebase.remoteconfig-9.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/lib/com.google.firebase.remoteconfig-9.4.0.jar -------------------------------------------------------------------------------- /android/lib/com.google.firebase.storage-9.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/lib/com.google.firebase.storage-9.4.0.jar -------------------------------------------------------------------------------- /android/lib/renamer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/lib/renamer.js -------------------------------------------------------------------------------- /android/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/manifest -------------------------------------------------------------------------------- /android/platform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/platform/README.md -------------------------------------------------------------------------------- /android/scripts/global_tracker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/scripts/global_tracker.xml -------------------------------------------------------------------------------- /android/scripts/import-google-services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/scripts/import-google-services.js -------------------------------------------------------------------------------- /android/scripts/node_modules/fs/index.js: -------------------------------------------------------------------------------- 1 | console.log("I'm `fs` modules"); 2 | -------------------------------------------------------------------------------- /android/scripts/node_modules/fs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/scripts/node_modules/fs/package.json -------------------------------------------------------------------------------- /android/scripts/node_modules/object-path/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/scripts/node_modules/object-path/.npmignore -------------------------------------------------------------------------------- /android/scripts/node_modules/object-path/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/scripts/node_modules/object-path/.travis.yml -------------------------------------------------------------------------------- /android/scripts/node_modules/object-path/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/scripts/node_modules/object-path/LICENSE -------------------------------------------------------------------------------- /android/scripts/node_modules/object-path/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/scripts/node_modules/object-path/README.md -------------------------------------------------------------------------------- /android/scripts/node_modules/object-path/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/scripts/node_modules/object-path/benchmark.js -------------------------------------------------------------------------------- /android/scripts/node_modules/object-path/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/scripts/node_modules/object-path/bower.json -------------------------------------------------------------------------------- /android/scripts/node_modules/object-path/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/scripts/node_modules/object-path/component.json -------------------------------------------------------------------------------- /android/scripts/node_modules/object-path/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/scripts/node_modules/object-path/index.js -------------------------------------------------------------------------------- /android/scripts/node_modules/object-path/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/scripts/node_modules/object-path/package.json -------------------------------------------------------------------------------- /android/scripts/node_modules/object-path/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/scripts/node_modules/object-path/test.js -------------------------------------------------------------------------------- /android/scripts/node_modules/underscore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/scripts/node_modules/underscore/LICENSE -------------------------------------------------------------------------------- /android/scripts/node_modules/underscore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/scripts/node_modules/underscore/README.md -------------------------------------------------------------------------------- /android/scripts/node_modules/underscore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/scripts/node_modules/underscore/package.json -------------------------------------------------------------------------------- /android/scripts/node_modules/underscore/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/scripts/node_modules/underscore/underscore-min.js -------------------------------------------------------------------------------- /android/scripts/node_modules/underscore/underscore-min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/scripts/node_modules/underscore/underscore-min.map -------------------------------------------------------------------------------- /android/scripts/node_modules/underscore/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/scripts/node_modules/underscore/underscore.js -------------------------------------------------------------------------------- /android/scripts/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/scripts/values.xml -------------------------------------------------------------------------------- /android/src/ti/firebase/ExampleProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/src/ti/firebase/ExampleProxy.java -------------------------------------------------------------------------------- /android/src/ti/firebase/TiFirebaseModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/src/ti/firebase/TiFirebaseModule.java -------------------------------------------------------------------------------- /android/timodule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/android/timodule.xml -------------------------------------------------------------------------------- /assets/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/assets/README -------------------------------------------------------------------------------- /documentation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/documentation/index.md -------------------------------------------------------------------------------- /example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/example/app.js -------------------------------------------------------------------------------- /iphone/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/.gitignore -------------------------------------------------------------------------------- /iphone/Classes/TiFirebaseAnalyticsModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/Classes/TiFirebaseAnalyticsModule.h -------------------------------------------------------------------------------- /iphone/Classes/TiFirebaseAnalyticsModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/Classes/TiFirebaseAnalyticsModule.m -------------------------------------------------------------------------------- /iphone/Classes/TiFirebaseAuthModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/Classes/TiFirebaseAuthModule.h -------------------------------------------------------------------------------- /iphone/Classes/TiFirebaseAuthModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/Classes/TiFirebaseAuthModule.m -------------------------------------------------------------------------------- /iphone/Classes/TiFirebaseModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/Classes/TiFirebaseModule.h -------------------------------------------------------------------------------- /iphone/Classes/TiFirebaseModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/Classes/TiFirebaseModule.m -------------------------------------------------------------------------------- /iphone/Classes/TiFirebaseModuleAssets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/Classes/TiFirebaseModuleAssets.h -------------------------------------------------------------------------------- /iphone/Classes/TiFirebaseModuleAssets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/Classes/TiFirebaseModuleAssets.m -------------------------------------------------------------------------------- /iphone/Resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/Resources/README.md -------------------------------------------------------------------------------- /iphone/TiFirebase_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/TiFirebase_Prefix.pch -------------------------------------------------------------------------------- /iphone/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/build.py -------------------------------------------------------------------------------- /iphone/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/manifest -------------------------------------------------------------------------------- /iphone/metadata.json: -------------------------------------------------------------------------------- 1 | {"exports":[]} -------------------------------------------------------------------------------- /iphone/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/module.modulemap -------------------------------------------------------------------------------- /iphone/module.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/module.xcconfig -------------------------------------------------------------------------------- /iphone/platform/Firebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/Firebase.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseAnalytics.framework/FirebaseAnalytics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseAnalytics.framework/FirebaseAnalytics -------------------------------------------------------------------------------- /iphone/platform/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseAnalytics.framework/Headers/FIRAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseAnalytics.framework/Headers/FIRAnalytics.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseAnalytics.framework/Headers/FIRAnalyticsConfiguration.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /iphone/platform/FirebaseAnalytics.framework/Headers/FIRApp.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /iphone/platform/FirebaseAnalytics.framework/Headers/FIRConfiguration.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /iphone/platform/FirebaseAnalytics.framework/Headers/FIREventNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseAnalytics.framework/Headers/FIREventNames.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseAnalytics.framework/Headers/FIROptions.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /iphone/platform/FirebaseAnalytics.framework/Headers/FIRParameterNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseAnalytics.framework/Headers/FIRParameterNames.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseAnalytics.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseAnalytics.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /iphone/platform/FirebaseAuth.framework/FirebaseAuth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseAuth.framework/FirebaseAuth -------------------------------------------------------------------------------- /iphone/platform/FirebaseAuth.framework/Headers/FIRAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseAuth.framework/Headers/FIRAuth.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseAuth.framework/Headers/FIRAuthCredential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseAuth.framework/Headers/FIRAuthCredential.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseAuth.framework/Headers/FIRAuthErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseAuth.framework/Headers/FIRAuthErrors.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseAuth.framework/Headers/FIREmailPasswordAuthProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseAuth.framework/Headers/FIREmailPasswordAuthProvider.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseAuth.framework/Headers/FIRFacebookAuthProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseAuth.framework/Headers/FIRFacebookAuthProvider.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseAuth.framework/Headers/FIRGitHubAuthProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseAuth.framework/Headers/FIRGitHubAuthProvider.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseAuth.framework/Headers/FIRGoogleAuthProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseAuth.framework/Headers/FIRGoogleAuthProvider.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseAuth.framework/Headers/FIRTwitterAuthProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseAuth.framework/Headers/FIRTwitterAuthProvider.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseAuth.framework/Headers/FIRUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseAuth.framework/Headers/FIRUser.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseAuth.framework/Headers/FIRUserInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseAuth.framework/Headers/FIRUserInfo.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseAuth.framework/Headers/FirebaseAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseAuth.framework/Headers/FirebaseAuth.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseAuth.framework/Headers/FirebaseAuthVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseAuth.framework/Headers/FirebaseAuthVersion.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseAuth.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseAuth.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /iphone/platform/FirebaseCore.framework/FirebaseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseCore.framework/FirebaseCore -------------------------------------------------------------------------------- /iphone/platform/FirebaseCore.framework/Headers/FIRAnalyticsConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseCore.framework/Headers/FIRAnalyticsConfiguration.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseCore.framework/Headers/FIRApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseCore.framework/Headers/FIRApp.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseCore.framework/Headers/FIRConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseCore.framework/Headers/FIRConfiguration.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseCore.framework/Headers/FIRLoggerLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseCore.framework/Headers/FIRLoggerLevel.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseCore.framework/Headers/FIROptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseCore.framework/Headers/FIROptions.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseCore.framework/Headers/FirebaseCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseCore.framework/Headers/FirebaseCore.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseCore.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseCore.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /iphone/platform/FirebaseInstanceID.framework/FirebaseInstanceID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseInstanceID.framework/FirebaseInstanceID -------------------------------------------------------------------------------- /iphone/platform/FirebaseInstanceID.framework/Headers/FIRInstanceID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseInstanceID.framework/Headers/FIRInstanceID.h -------------------------------------------------------------------------------- /iphone/platform/FirebaseInstanceID.framework/Headers/FirebaseInstanceID.h: -------------------------------------------------------------------------------- 1 | #import "FIRInstanceID.h" 2 | -------------------------------------------------------------------------------- /iphone/platform/FirebaseInstanceID.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/FirebaseInstanceID.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /iphone/platform/GTMSessionFetcher.framework/GTMSessionFetcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/GTMSessionFetcher.framework/GTMSessionFetcher -------------------------------------------------------------------------------- /iphone/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac -------------------------------------------------------------------------------- /iphone/platform/README.md: -------------------------------------------------------------------------------- 1 | Firebase SDK: 3.15.0 2 | -------------------------------------------------------------------------------- /iphone/platform/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/platform/module.modulemap -------------------------------------------------------------------------------- /iphone/ti-firebase.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/ti-firebase.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iphone/ti-firebase.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/ti-firebase.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iphone/ti-firebase.xcodeproj/project.xcworkspace/xcuserdata/cribe.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/ti-firebase.xcodeproj/project.xcworkspace/xcuserdata/cribe.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /iphone/ti-firebase.xcodeproj/xcshareddata/xcschemes/ti-firebase.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/ti-firebase.xcodeproj/xcshareddata/xcschemes/ti-firebase.xcscheme -------------------------------------------------------------------------------- /iphone/ti-firebase.xcodeproj/xcuserdata/cribe.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/ti-firebase.xcodeproj/xcuserdata/cribe.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /iphone/timodule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/timodule.xml -------------------------------------------------------------------------------- /iphone/titanium.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/iphone/titanium.xcconfig -------------------------------------------------------------------------------- /ti.firebase-iphone-1.3.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisribe/ti-firebase/HEAD/ti.firebase-iphone-1.3.1.zip --------------------------------------------------------------------------------