├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── increase-api-coverage.md ├── actions │ └── setup_test_action │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── publish.yml │ ├── pull_request.yml │ └── pull_request_target.yml ├── .gitignore ├── .idea └── externalDependencies.xml ├── .opensource └── project.json ├── LICENSE ├── README.md ├── convention-plugin-test-option ├── build.gradle.kts ├── settings.gradle.kts └── src │ └── main │ └── kotlin │ ├── EmulatorJobsMatrix.kt │ ├── TestOptionsConfig.kt │ └── testOptionsConvention.gradle.kts ├── documentation ├── gitlive-logo.png ├── homepage.svg └── logo-styles.css ├── firebase-analytics ├── api │ ├── android │ │ └── firebase-analytics.api │ └── jvm │ │ └── firebase-analytics.api ├── build.gradle.kts ├── documentation.md ├── firebase_analytics.podspec ├── package.json └── src │ ├── androidInstrumentedTest │ ├── AndroidManifest.xml │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── analytics │ │ └── analytics.kt │ ├── androidMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── analytics │ │ └── analytics.kt │ ├── androidUnitTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── analytics │ │ └── analytics.kt │ ├── appleMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── analytics │ │ └── analytics.kt │ ├── appleTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── analytics │ │ └── analytics.kt │ ├── commonMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── analytics │ │ ├── AnalyticEventConstants.kt │ │ └── analytics.kt │ ├── commonTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── analytics │ │ └── analytics.kt │ ├── jsMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── analytics │ │ ├── analytics.kt │ │ └── externals │ │ └── analytics.kt │ ├── jsTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── analytics │ │ └── analytics.kt │ ├── jvmMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── analytics │ │ └── analytics.jvm.kt │ └── jvmTest │ └── kotlin │ └── dev │ └── gitlive │ └── firebase │ └── analytics │ └── analytics.kt ├── firebase-app ├── api │ ├── android │ │ └── firebase-app.api │ └── jvm │ │ └── firebase-app.api ├── build.gradle.kts ├── documentation.md ├── firebase_app.podspec ├── package.json └── src │ ├── androidInstrumentedTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── firebase.kt │ ├── androidMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── firebase.kt │ ├── androidUnitTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── firebase.kt │ ├── appleMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── firebase.kt │ ├── appleTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── firebase.kt │ ├── commonMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── firebase.kt │ ├── commonTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── firebase.kt │ ├── jsMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ ├── externals │ │ └── app.kt │ │ └── firebase.kt │ ├── jsTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── firebase.kt │ └── jvmTest │ └── kotlin │ └── dev │ └── gitlive │ └── firebase │ └── firebase.kt ├── firebase-auth ├── api │ ├── android │ │ └── firebase-auth.api │ └── jvm │ │ └── firebase-auth.api ├── build.gradle.kts ├── documentation.md ├── firebase_auth.podspec ├── karma.config.d │ └── karma.conf.js ├── package.json └── src │ ├── androidInstrumentedTest │ ├── AndroidManifest.xml │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── auth │ │ └── auth.kt │ ├── androidMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── auth │ │ ├── auth.kt │ │ ├── credentials.kt │ │ ├── multifactor.kt │ │ └── user.kt │ ├── androidUnitTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── auth │ │ └── auth.kt │ ├── appleMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── auth │ │ ├── auth.kt │ │ ├── credentials.kt │ │ ├── multifactor.kt │ │ └── user.kt │ ├── appleTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── auth │ │ └── auth.kt │ ├── commonMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── auth │ │ ├── auth.kt │ │ ├── credentials.kt │ │ ├── multifactor.kt │ │ └── user.kt │ ├── commonTest │ ├── kotlin │ │ └── dev │ │ │ └── gitlive │ │ │ └── firebase │ │ │ └── auth │ │ │ └── auth.kt │ └── resources │ │ └── entitlements.plist │ ├── jsMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── auth │ │ ├── auth.kt │ │ ├── credentials.kt │ │ ├── externals │ │ └── auth.kt │ │ ├── multifactor.kt │ │ └── user.kt │ ├── jsTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── auth │ │ └── auth.kt │ ├── jvmMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── auth │ │ ├── auth.kt │ │ ├── credentials.kt │ │ ├── multifactor.kt │ │ └── user.kt │ └── jvmTest │ └── kotlin │ └── dev │ └── gitlive │ └── firebase │ └── auth │ └── auth.kt ├── firebase-common-internal ├── api │ ├── android │ │ └── firebase-common-internal.api │ └── jvm │ │ └── firebase-common-internal.api ├── build.gradle.kts ├── package.json └── src │ ├── androidMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── internal │ │ ├── EncodedObject.kt │ │ ├── _decoders.kt │ │ └── _encoders.kt │ ├── appleMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── internal │ │ ├── EncodedObject.kt │ │ ├── _decoders.kt │ │ └── _encoders.kt │ ├── commonMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── internal │ │ ├── EncodeDecodeSettings.kt │ │ ├── EncodedObject.kt │ │ ├── Polymorphic.kt │ │ ├── decoders.kt │ │ ├── encoders.kt │ │ ├── reencodeTransformation.kt │ │ └── serializers.kt │ ├── commonTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── internal │ │ └── EncodersTest.kt │ └── jsMain │ └── kotlin │ └── dev │ └── gitlive │ └── firebase │ └── internal │ ├── EncodedObject.kt │ ├── _decoders.kt │ └── _encoders.kt ├── firebase-common ├── api │ ├── android │ │ └── firebase-common.api │ └── jvm │ │ └── firebase-common.api ├── build.gradle.kts ├── package.json └── src │ ├── commonMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ ├── EncodeDecodeSettings.kt │ │ ├── FirebaseClassDiscriminator.kt │ │ ├── FirebaseDecoder.kt │ │ └── FirebaseEncoder.kt │ └── jsMain │ └── kotlin │ └── dev │ └── gitlive │ └── firebase │ └── Unsubscribe.kt ├── firebase-config ├── api │ ├── android │ │ └── firebase-config.api │ └── jvm │ │ └── firebase-config.api ├── build.gradle.kts ├── documentation.md ├── firebase_config.podspec ├── package.json └── src │ ├── androidInstrumentedTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── remoteconfig │ │ └── RemoteConfig.kt │ ├── androidMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── remoteconfig │ │ ├── FirebaseRemoteConfig.kt │ │ └── FirebaseRemoteConfigValue.kt │ ├── androidUnitTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── remoteconfig │ │ └── RemoteConfig.kt │ ├── appleMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── remoteconfig │ │ ├── FirebaseRemoteConfig.kt │ │ ├── FirebaseRemoteConfigValue.kt │ │ └── NSDataExtension.kt │ ├── appleTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── remoteconfig │ │ ├── NSDataExtensionTest.kt │ │ └── RemoteConfig.kt │ ├── commonMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── remoteconfig │ │ ├── FirebaseRemoteConfig.kt │ │ ├── FirebaseRemoteConfigInfo.kt │ │ ├── FirebaseRemoteConfigSettings.kt │ │ └── FirebaseRemoteConfigValue.kt │ ├── commonTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── remoteconfig │ │ └── FirebaseRemoteConfig.kt │ ├── jsMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── remoteconfig │ │ ├── FirebaseRemoteConfig.kt │ │ ├── FirebaseRemoteConfigValue.kt │ │ └── externals │ │ └── remoteconfig.kt │ ├── jsTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── remoteconfig │ │ └── FirebaseRemoteConfig.kt │ └── jvmTest │ └── kotlin │ └── dev │ └── gitlive │ └── firebase │ └── remoteconfig │ └── RemoteConfig.kt ├── firebase-crashlytics ├── api │ └── firebase-crashlytics.api ├── build.gradle.kts ├── documentation.md ├── firebase_crashlytics.podspec ├── package.json └── src │ ├── androidInstrumentedTest │ ├── AndroidManifest.xml │ ├── kotlin │ │ └── dev │ │ │ └── gitlive │ │ │ └── firebase │ │ │ └── crashlytics │ │ │ └── crashlytics.kt │ └── res │ │ └── values │ │ └── strings.xml │ ├── androidMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── crashlytics │ │ └── crashlytics.kt │ ├── androidUnitTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── crashlytics │ │ └── crashlytics.kt │ ├── appleMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── crashlytics │ │ └── crashlytics.kt │ ├── appleTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── crashlytics │ │ └── crashlytics.kt │ ├── commonMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── crashlytics │ │ └── crashlytics.kt │ ├── commonTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── crashlytics │ │ └── crashlytics.kt │ └── jvmMain │ └── kotlin │ └── dev │ └── gitlive │ └── firebase │ └── crashlytics │ └── crashlytics.jvm.kt ├── firebase-database ├── api │ ├── android │ │ └── firebase-database.api │ └── jvm │ │ └── firebase-database.api ├── build.gradle.kts ├── documentation.md ├── firebase_database.podspec ├── karma.config.d │ └── karma.conf.js ├── package.json └── src │ ├── androidInstrumentedTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── database │ │ └── database.kt │ ├── androidMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── database │ │ ├── ServerValue.kt │ │ └── database.kt │ ├── androidUnitTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── database │ │ └── database.kt │ ├── appleMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── database │ │ ├── ServerValue.kt │ │ └── database.kt │ ├── appleTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── database │ │ └── database.kt │ ├── commonMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── database │ │ ├── ServerValue.kt │ │ └── database.kt │ ├── commonTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── database │ │ └── database.kt │ ├── jsMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── database │ │ ├── ServerValue.kt │ │ ├── database.kt │ │ └── externals │ │ ├── callbacks.kt │ │ └── database.kt │ ├── jsTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── database │ │ └── database.kt │ └── jvmTest │ └── kotlin │ └── dev │ └── gitlive │ └── firebase │ └── database │ └── database.kt ├── firebase-firestore ├── api │ ├── android │ │ └── firebase-firestore.api │ └── jvm │ │ └── firebase-firestore.api ├── build.gradle.kts ├── documentation.md ├── firebase_firestore.podspec ├── karma.config.d │ └── karma.conf.js ├── package.json └── src │ ├── androidInstrumentedTest │ ├── AndroidManifest.xml │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── firestore │ │ ├── Ignore.kt │ │ └── firestore.kt │ ├── androidMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── firestore │ │ ├── FieldValue.kt │ │ ├── GeoPoint.kt │ │ ├── Timestamp.kt │ │ ├── _encoders.kt │ │ ├── firestore.kt │ │ └── internal │ │ ├── NativeCollectionReferenceWrapper.kt │ │ ├── NativeDocumentReference.kt │ │ ├── NativeDocumentSnapshotWrapper.kt │ │ ├── NativeFirebaseFirestoreWrapper.kt │ │ ├── NativeQueryWrapper.kt │ │ ├── NativeTransactionWrapper.kt │ │ ├── NativeWriteBatchWrapper.kt │ │ ├── SetOptions.kt │ │ ├── Source.kt │ │ └── callbackExecutorMap.kt │ ├── androidUnitTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── firestore │ │ ├── Ignore.kt │ │ └── firestore.kt │ ├── appleMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── firestore │ │ ├── FieldValue.kt │ │ ├── GeoPoint.kt │ │ ├── Timestamp.kt │ │ ├── _encoders.kt │ │ ├── firestore.kt │ │ └── internal │ │ ├── NativeCollectionReferenceWrapper.kt │ │ ├── NativeDocumentReference.kt │ │ ├── NativeDocumentSnapshotWrapper.kt │ │ ├── NativeFirebaseFirestoreWrapper.kt │ │ ├── NativeQueryWrapper.kt │ │ ├── NativeTransactionWrapper.kt │ │ ├── NativeWriteBatchWrapper.kt │ │ ├── Source.kt │ │ └── throwError.kt │ ├── appleTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── firestore │ │ ├── ContextSwitchTest.kt │ │ ├── Ignore.kt │ │ └── firestore.kt │ ├── commonMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── firestore │ │ ├── DocumentReferenceSerializer.kt │ │ ├── FieldValue.kt │ │ ├── FieldValueSerializer.kt │ │ ├── FieldValuesDSL.kt │ │ ├── FieldsAndValuesUpdateDSL.kt │ │ ├── Filter.kt │ │ ├── GeoPoint.kt │ │ ├── GeoPointSerializer.kt │ │ ├── LocalCacheSettings.kt │ │ ├── Timestamp.kt │ │ ├── TimestampSerializer.kt │ │ ├── encoders.kt │ │ ├── firestore.kt │ │ ├── helpers.kt │ │ └── internal │ │ ├── FieldAndValue.kt │ │ ├── NativeCollectionReferenceWrapper.kt │ │ ├── NativeDocumentReference.kt │ │ ├── NativeDocumentSnapshotWrapper.kt │ │ ├── NativeFirebaseFirestoreWrapper.kt │ │ ├── NativeQueryWrapper.kt │ │ ├── NativeTransactionWrapper.kt │ │ ├── NativeWriteBatchWrapper.kt │ │ └── SetOptions.kt │ ├── commonTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── firestore │ │ ├── DocumentReferenceTest.kt │ │ ├── FieldValueTests.kt │ │ ├── FirestoreSourceTest.kt │ │ ├── GeoPointTests.kt │ │ ├── Ignore.kt │ │ ├── QueryTest.kt │ │ ├── TimestampTests.kt │ │ ├── TransactionTest.kt │ │ ├── WriteBatchTest.kt │ │ └── firestore.kt │ ├── jsMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── firestore │ │ ├── FieldValue.kt │ │ ├── GeoPoint.kt │ │ ├── Timestamp.kt │ │ ├── _encoders.kt │ │ ├── externals │ │ └── firestore.kt │ │ ├── firestore.kt │ │ └── internal │ │ ├── NativeCollectionReferenceWrapper.kt │ │ ├── NativeDocumentReference.kt │ │ ├── NativeDocumentSnapshotWrapper.kt │ │ ├── NativeFirebaseFirestoreWrapper.kt │ │ ├── NativeQueryWrapper.kt │ │ ├── NativeTransactionWrapper.kt │ │ ├── NativeWriteBatchWrapper.kt │ │ └── SetOptions.kt │ ├── jsTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── firestore │ │ ├── Ignore.kt │ │ └── firestore.kt │ └── jvmTest │ └── kotlin │ └── dev │ └── gitlive │ └── firebase │ └── firestore │ ├── Ignore.kt │ └── firestore.kt ├── firebase-functions ├── api │ ├── android │ │ └── firebase-functions.api │ └── jvm │ │ └── firebase-functions.api ├── build.gradle.kts ├── documentation.md ├── firebase_functions.podspec ├── package.json └── src │ ├── androidMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── functions │ │ └── functions.kt │ ├── appleMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── functions │ │ └── functions.kt │ ├── commonMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── functions │ │ └── functions.kt │ └── jsMain │ └── kotlin │ └── dev │ └── gitlive │ └── firebase │ └── functions │ ├── externals │ ├── HttpsCallableExt.kt │ └── functions.kt │ └── functions.kt ├── firebase-installations ├── api │ ├── android │ │ └── firebase-installations.api │ └── jvm │ │ └── firebase-installations.api ├── build.gradle.kts ├── documentation.md ├── firebase_installations.podspec ├── package.json └── src │ ├── androidMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── installations │ │ └── installations.kt │ ├── appleMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── installations │ │ └── installations.kt │ ├── commonMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── installations │ │ └── installations.kt │ └── jsMain │ └── kotlin │ └── dev │ └── gitlive │ └── firebase │ └── installations │ ├── externals │ └── installations.kt │ └── installations.kt ├── firebase-messaging ├── api │ ├── android │ │ └── firebase-messaging.api │ └── jvm │ │ └── firebase-messaging.api ├── build.gradle.kts ├── documentation.md ├── firebase_messaging.podspec ├── package.json └── src │ ├── androidInstrumentedTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── messaging │ │ └── messaging.kt │ ├── androidMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── messaging │ │ └── messaging.kt │ ├── appleMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── messaging │ │ └── messaging.kt │ ├── appleTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── messaging │ │ └── messaging.kt │ ├── commonMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── messaging │ │ └── messaging.kt │ ├── commonTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── messaging │ │ └── messaging.kt │ ├── jsMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── messaging │ │ ├── externals │ │ └── messaging.kt │ │ └── messaging.kt │ └── jvmMain │ └── kotlin │ └── dev │ └── gitlive │ └── firebase │ └── messaging │ └── messaging.kt ├── firebase-perf ├── api │ ├── android │ │ └── firebase-perf.api │ └── jvm │ │ └── firebase-perf.api ├── build.gradle.kts ├── documentation.md ├── firebase_perf.podspec ├── package.json └── src │ ├── androidInstrumentedTest │ ├── AndroidManifest.xml │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── perf │ │ ├── metrics │ │ └── Trace.kt │ │ └── performance.kt │ ├── androidMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── perf │ │ ├── metrics │ │ └── Trace.kt │ │ ├── performance.kt │ │ └── session │ │ └── PerfSession.kt │ ├── androidUnitTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── perf │ │ └── performance.kt │ ├── appleMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── perf │ │ ├── metrics │ │ └── Trace.kt │ │ └── performance.kt │ ├── appleTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── perf │ │ └── performance.kt │ ├── commonMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── perf │ │ ├── metrics │ │ └── Trace.kt │ │ └── performance.kt │ ├── commonTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── perf │ │ ├── metrics │ │ └── Trace.kt │ │ └── performance.kt │ ├── jsMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── perf │ │ ├── externals │ │ └── performance.kt │ │ ├── metrics │ │ └── Trace.kt │ │ └── performance.kt │ ├── jsTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── perf │ │ ├── metrics │ │ └── Trace.kt │ │ └── performance.kt │ ├── jvmMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── perf │ │ ├── metrics │ │ └── Trace.jvm.kt │ │ └── performance.jvm.kt │ └── jvmTest │ └── kotlin │ └── dev │ └── gitlive │ └── firebase │ └── perf │ └── performance.kt ├── firebase-storage ├── api │ ├── android │ │ └── firebase-storage.api │ └── jvm │ │ └── firebase-storage.api ├── build.gradle.kts ├── documentation.md ├── firebase_storage.podspec ├── package.json └── src │ ├── androidInstrumentedTest │ ├── AndroidManifest.xml │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── storage │ │ ├── storage.android.kt │ │ └── storage.kt │ ├── androidMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── storage │ │ └── storage.kt │ ├── androidUnitTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── storage │ │ ├── storage.android.kt │ │ └── storage.kt │ ├── appleMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── storage │ │ └── storage.kt │ ├── appleTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── storage │ │ ├── storage.ios.kt │ │ └── storage.kt │ ├── commonMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── storage │ │ └── storage.kt │ ├── commonTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── storage │ │ └── storage.kt │ ├── jsMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── storage │ │ ├── externals │ │ └── storage.kt │ │ └── storage.kt │ ├── jsTest │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── storage │ │ ├── storage.js.kt │ │ └── storage.kt │ └── jvmTest │ └── kotlin │ └── dev │ └── gitlive │ └── firebase │ └── storage │ ├── storage.jvm.kt │ └── storage.kt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts ├── test-utils ├── api │ ├── android │ │ └── test-utils.api │ └── jvm │ │ └── test-utils.api ├── build.gradle.kts └── src │ ├── androidMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── TestUtils.kt │ ├── appleMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── TestUtils.kt │ ├── commonMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── TestUtils.kt │ ├── jsMain │ └── kotlin │ │ └── dev │ │ └── gitlive │ │ └── firebase │ │ └── TestUtils.kt │ └── jvmMain │ └── kotlin │ └── dev │ └── gitlive │ └── firebase │ └── TestUtils.kt └── test ├── .firebaserc ├── database.rules.json ├── firebase.json ├── firestore.rules └── storage.rules /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [GitLiveApp] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/increase-api-coverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/.github/ISSUE_TEMPLATE/increase-api-coverage.md -------------------------------------------------------------------------------- /.github/actions/setup_test_action/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/.github/actions/setup_test_action/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request_target.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/.github/workflows/pull_request_target.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/externalDependencies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/.idea/externalDependencies.xml -------------------------------------------------------------------------------- /.opensource/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/.opensource/project.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/README.md -------------------------------------------------------------------------------- /convention-plugin-test-option/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/convention-plugin-test-option/build.gradle.kts -------------------------------------------------------------------------------- /convention-plugin-test-option/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/convention-plugin-test-option/settings.gradle.kts -------------------------------------------------------------------------------- /convention-plugin-test-option/src/main/kotlin/EmulatorJobsMatrix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/convention-plugin-test-option/src/main/kotlin/EmulatorJobsMatrix.kt -------------------------------------------------------------------------------- /convention-plugin-test-option/src/main/kotlin/TestOptionsConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/convention-plugin-test-option/src/main/kotlin/TestOptionsConfig.kt -------------------------------------------------------------------------------- /convention-plugin-test-option/src/main/kotlin/testOptionsConvention.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | } 3 | -------------------------------------------------------------------------------- /documentation/gitlive-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/documentation/gitlive-logo.png -------------------------------------------------------------------------------- /documentation/homepage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/documentation/homepage.svg -------------------------------------------------------------------------------- /documentation/logo-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/documentation/logo-styles.css -------------------------------------------------------------------------------- /firebase-analytics/api/android/firebase-analytics.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-analytics/api/android/firebase-analytics.api -------------------------------------------------------------------------------- /firebase-analytics/api/jvm/firebase-analytics.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-analytics/api/jvm/firebase-analytics.api -------------------------------------------------------------------------------- /firebase-analytics/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-analytics/build.gradle.kts -------------------------------------------------------------------------------- /firebase-analytics/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-analytics/documentation.md -------------------------------------------------------------------------------- /firebase-analytics/firebase_analytics.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-analytics/firebase_analytics.podspec -------------------------------------------------------------------------------- /firebase-analytics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-analytics/package.json -------------------------------------------------------------------------------- /firebase-analytics/src/androidInstrumentedTest/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-analytics/src/androidInstrumentedTest/AndroidManifest.xml -------------------------------------------------------------------------------- /firebase-analytics/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/analytics/analytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-analytics/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/analytics/analytics.kt -------------------------------------------------------------------------------- /firebase-analytics/src/androidMain/kotlin/dev/gitlive/firebase/analytics/analytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-analytics/src/androidMain/kotlin/dev/gitlive/firebase/analytics/analytics.kt -------------------------------------------------------------------------------- /firebase-analytics/src/androidUnitTest/kotlin/dev/gitlive/firebase/analytics/analytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-analytics/src/androidUnitTest/kotlin/dev/gitlive/firebase/analytics/analytics.kt -------------------------------------------------------------------------------- /firebase-analytics/src/appleMain/kotlin/dev/gitlive/firebase/analytics/analytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-analytics/src/appleMain/kotlin/dev/gitlive/firebase/analytics/analytics.kt -------------------------------------------------------------------------------- /firebase-analytics/src/appleTest/kotlin/dev/gitlive/firebase/analytics/analytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-analytics/src/appleTest/kotlin/dev/gitlive/firebase/analytics/analytics.kt -------------------------------------------------------------------------------- /firebase-analytics/src/commonMain/kotlin/dev/gitlive/firebase/analytics/AnalyticEventConstants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-analytics/src/commonMain/kotlin/dev/gitlive/firebase/analytics/AnalyticEventConstants.kt -------------------------------------------------------------------------------- /firebase-analytics/src/commonMain/kotlin/dev/gitlive/firebase/analytics/analytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-analytics/src/commonMain/kotlin/dev/gitlive/firebase/analytics/analytics.kt -------------------------------------------------------------------------------- /firebase-analytics/src/commonTest/kotlin/dev/gitlive/firebase/analytics/analytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-analytics/src/commonTest/kotlin/dev/gitlive/firebase/analytics/analytics.kt -------------------------------------------------------------------------------- /firebase-analytics/src/jsMain/kotlin/dev/gitlive/firebase/analytics/analytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-analytics/src/jsMain/kotlin/dev/gitlive/firebase/analytics/analytics.kt -------------------------------------------------------------------------------- /firebase-analytics/src/jsMain/kotlin/dev/gitlive/firebase/analytics/externals/analytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-analytics/src/jsMain/kotlin/dev/gitlive/firebase/analytics/externals/analytics.kt -------------------------------------------------------------------------------- /firebase-analytics/src/jsTest/kotlin/dev/gitlive/firebase/analytics/analytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-analytics/src/jsTest/kotlin/dev/gitlive/firebase/analytics/analytics.kt -------------------------------------------------------------------------------- /firebase-analytics/src/jvmMain/kotlin/dev/gitlive/firebase/analytics/analytics.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-analytics/src/jvmMain/kotlin/dev/gitlive/firebase/analytics/analytics.jvm.kt -------------------------------------------------------------------------------- /firebase-analytics/src/jvmTest/kotlin/dev/gitlive/firebase/analytics/analytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-analytics/src/jvmTest/kotlin/dev/gitlive/firebase/analytics/analytics.kt -------------------------------------------------------------------------------- /firebase-app/api/android/firebase-app.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-app/api/android/firebase-app.api -------------------------------------------------------------------------------- /firebase-app/api/jvm/firebase-app.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-app/api/jvm/firebase-app.api -------------------------------------------------------------------------------- /firebase-app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-app/build.gradle.kts -------------------------------------------------------------------------------- /firebase-app/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-app/documentation.md -------------------------------------------------------------------------------- /firebase-app/firebase_app.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-app/firebase_app.podspec -------------------------------------------------------------------------------- /firebase-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-app/package.json -------------------------------------------------------------------------------- /firebase-app/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/firebase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-app/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/firebase.kt -------------------------------------------------------------------------------- /firebase-app/src/androidMain/kotlin/dev/gitlive/firebase/firebase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-app/src/androidMain/kotlin/dev/gitlive/firebase/firebase.kt -------------------------------------------------------------------------------- /firebase-app/src/androidUnitTest/kotlin/dev/gitlive/firebase/firebase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-app/src/androidUnitTest/kotlin/dev/gitlive/firebase/firebase.kt -------------------------------------------------------------------------------- /firebase-app/src/appleMain/kotlin/dev/gitlive/firebase/firebase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-app/src/appleMain/kotlin/dev/gitlive/firebase/firebase.kt -------------------------------------------------------------------------------- /firebase-app/src/appleTest/kotlin/dev/gitlive/firebase/firebase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-app/src/appleTest/kotlin/dev/gitlive/firebase/firebase.kt -------------------------------------------------------------------------------- /firebase-app/src/commonMain/kotlin/dev/gitlive/firebase/firebase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-app/src/commonMain/kotlin/dev/gitlive/firebase/firebase.kt -------------------------------------------------------------------------------- /firebase-app/src/commonTest/kotlin/dev/gitlive/firebase/firebase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-app/src/commonTest/kotlin/dev/gitlive/firebase/firebase.kt -------------------------------------------------------------------------------- /firebase-app/src/jsMain/kotlin/dev/gitlive/firebase/externals/app.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-app/src/jsMain/kotlin/dev/gitlive/firebase/externals/app.kt -------------------------------------------------------------------------------- /firebase-app/src/jsMain/kotlin/dev/gitlive/firebase/firebase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-app/src/jsMain/kotlin/dev/gitlive/firebase/firebase.kt -------------------------------------------------------------------------------- /firebase-app/src/jsTest/kotlin/dev/gitlive/firebase/firebase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-app/src/jsTest/kotlin/dev/gitlive/firebase/firebase.kt -------------------------------------------------------------------------------- /firebase-app/src/jvmTest/kotlin/dev/gitlive/firebase/firebase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-app/src/jvmTest/kotlin/dev/gitlive/firebase/firebase.kt -------------------------------------------------------------------------------- /firebase-auth/api/android/firebase-auth.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/api/android/firebase-auth.api -------------------------------------------------------------------------------- /firebase-auth/api/jvm/firebase-auth.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/api/jvm/firebase-auth.api -------------------------------------------------------------------------------- /firebase-auth/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/build.gradle.kts -------------------------------------------------------------------------------- /firebase-auth/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/documentation.md -------------------------------------------------------------------------------- /firebase-auth/firebase_auth.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/firebase_auth.podspec -------------------------------------------------------------------------------- /firebase-auth/karma.config.d/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/karma.config.d/karma.conf.js -------------------------------------------------------------------------------- /firebase-auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/package.json -------------------------------------------------------------------------------- /firebase-auth/src/androidInstrumentedTest/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/androidInstrumentedTest/AndroidManifest.xml -------------------------------------------------------------------------------- /firebase-auth/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/auth/auth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/auth/auth.kt -------------------------------------------------------------------------------- /firebase-auth/src/androidMain/kotlin/dev/gitlive/firebase/auth/auth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/androidMain/kotlin/dev/gitlive/firebase/auth/auth.kt -------------------------------------------------------------------------------- /firebase-auth/src/androidMain/kotlin/dev/gitlive/firebase/auth/credentials.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/androidMain/kotlin/dev/gitlive/firebase/auth/credentials.kt -------------------------------------------------------------------------------- /firebase-auth/src/androidMain/kotlin/dev/gitlive/firebase/auth/multifactor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/androidMain/kotlin/dev/gitlive/firebase/auth/multifactor.kt -------------------------------------------------------------------------------- /firebase-auth/src/androidMain/kotlin/dev/gitlive/firebase/auth/user.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/androidMain/kotlin/dev/gitlive/firebase/auth/user.kt -------------------------------------------------------------------------------- /firebase-auth/src/androidUnitTest/kotlin/dev/gitlive/firebase/auth/auth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/androidUnitTest/kotlin/dev/gitlive/firebase/auth/auth.kt -------------------------------------------------------------------------------- /firebase-auth/src/appleMain/kotlin/dev/gitlive/firebase/auth/auth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/appleMain/kotlin/dev/gitlive/firebase/auth/auth.kt -------------------------------------------------------------------------------- /firebase-auth/src/appleMain/kotlin/dev/gitlive/firebase/auth/credentials.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/appleMain/kotlin/dev/gitlive/firebase/auth/credentials.kt -------------------------------------------------------------------------------- /firebase-auth/src/appleMain/kotlin/dev/gitlive/firebase/auth/multifactor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/appleMain/kotlin/dev/gitlive/firebase/auth/multifactor.kt -------------------------------------------------------------------------------- /firebase-auth/src/appleMain/kotlin/dev/gitlive/firebase/auth/user.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/appleMain/kotlin/dev/gitlive/firebase/auth/user.kt -------------------------------------------------------------------------------- /firebase-auth/src/appleTest/kotlin/dev/gitlive/firebase/auth/auth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/appleTest/kotlin/dev/gitlive/firebase/auth/auth.kt -------------------------------------------------------------------------------- /firebase-auth/src/commonMain/kotlin/dev/gitlive/firebase/auth/auth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/commonMain/kotlin/dev/gitlive/firebase/auth/auth.kt -------------------------------------------------------------------------------- /firebase-auth/src/commonMain/kotlin/dev/gitlive/firebase/auth/credentials.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/commonMain/kotlin/dev/gitlive/firebase/auth/credentials.kt -------------------------------------------------------------------------------- /firebase-auth/src/commonMain/kotlin/dev/gitlive/firebase/auth/multifactor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/commonMain/kotlin/dev/gitlive/firebase/auth/multifactor.kt -------------------------------------------------------------------------------- /firebase-auth/src/commonMain/kotlin/dev/gitlive/firebase/auth/user.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/commonMain/kotlin/dev/gitlive/firebase/auth/user.kt -------------------------------------------------------------------------------- /firebase-auth/src/commonTest/kotlin/dev/gitlive/firebase/auth/auth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/commonTest/kotlin/dev/gitlive/firebase/auth/auth.kt -------------------------------------------------------------------------------- /firebase-auth/src/commonTest/resources/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/commonTest/resources/entitlements.plist -------------------------------------------------------------------------------- /firebase-auth/src/jsMain/kotlin/dev/gitlive/firebase/auth/auth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/jsMain/kotlin/dev/gitlive/firebase/auth/auth.kt -------------------------------------------------------------------------------- /firebase-auth/src/jsMain/kotlin/dev/gitlive/firebase/auth/credentials.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/jsMain/kotlin/dev/gitlive/firebase/auth/credentials.kt -------------------------------------------------------------------------------- /firebase-auth/src/jsMain/kotlin/dev/gitlive/firebase/auth/externals/auth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/jsMain/kotlin/dev/gitlive/firebase/auth/externals/auth.kt -------------------------------------------------------------------------------- /firebase-auth/src/jsMain/kotlin/dev/gitlive/firebase/auth/multifactor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/jsMain/kotlin/dev/gitlive/firebase/auth/multifactor.kt -------------------------------------------------------------------------------- /firebase-auth/src/jsMain/kotlin/dev/gitlive/firebase/auth/user.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/jsMain/kotlin/dev/gitlive/firebase/auth/user.kt -------------------------------------------------------------------------------- /firebase-auth/src/jsTest/kotlin/dev/gitlive/firebase/auth/auth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/jsTest/kotlin/dev/gitlive/firebase/auth/auth.kt -------------------------------------------------------------------------------- /firebase-auth/src/jvmMain/kotlin/dev/gitlive/firebase/auth/auth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/jvmMain/kotlin/dev/gitlive/firebase/auth/auth.kt -------------------------------------------------------------------------------- /firebase-auth/src/jvmMain/kotlin/dev/gitlive/firebase/auth/credentials.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/jvmMain/kotlin/dev/gitlive/firebase/auth/credentials.kt -------------------------------------------------------------------------------- /firebase-auth/src/jvmMain/kotlin/dev/gitlive/firebase/auth/multifactor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/jvmMain/kotlin/dev/gitlive/firebase/auth/multifactor.kt -------------------------------------------------------------------------------- /firebase-auth/src/jvmMain/kotlin/dev/gitlive/firebase/auth/user.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/jvmMain/kotlin/dev/gitlive/firebase/auth/user.kt -------------------------------------------------------------------------------- /firebase-auth/src/jvmTest/kotlin/dev/gitlive/firebase/auth/auth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-auth/src/jvmTest/kotlin/dev/gitlive/firebase/auth/auth.kt -------------------------------------------------------------------------------- /firebase-common-internal/api/android/firebase-common-internal.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common-internal/api/android/firebase-common-internal.api -------------------------------------------------------------------------------- /firebase-common-internal/api/jvm/firebase-common-internal.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common-internal/api/jvm/firebase-common-internal.api -------------------------------------------------------------------------------- /firebase-common-internal/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common-internal/build.gradle.kts -------------------------------------------------------------------------------- /firebase-common-internal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common-internal/package.json -------------------------------------------------------------------------------- /firebase-common-internal/src/androidMain/kotlin/dev/gitlive/firebase/internal/EncodedObject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common-internal/src/androidMain/kotlin/dev/gitlive/firebase/internal/EncodedObject.kt -------------------------------------------------------------------------------- /firebase-common-internal/src/androidMain/kotlin/dev/gitlive/firebase/internal/_decoders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common-internal/src/androidMain/kotlin/dev/gitlive/firebase/internal/_decoders.kt -------------------------------------------------------------------------------- /firebase-common-internal/src/androidMain/kotlin/dev/gitlive/firebase/internal/_encoders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common-internal/src/androidMain/kotlin/dev/gitlive/firebase/internal/_encoders.kt -------------------------------------------------------------------------------- /firebase-common-internal/src/appleMain/kotlin/dev/gitlive/firebase/internal/EncodedObject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common-internal/src/appleMain/kotlin/dev/gitlive/firebase/internal/EncodedObject.kt -------------------------------------------------------------------------------- /firebase-common-internal/src/appleMain/kotlin/dev/gitlive/firebase/internal/_decoders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common-internal/src/appleMain/kotlin/dev/gitlive/firebase/internal/_decoders.kt -------------------------------------------------------------------------------- /firebase-common-internal/src/appleMain/kotlin/dev/gitlive/firebase/internal/_encoders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common-internal/src/appleMain/kotlin/dev/gitlive/firebase/internal/_encoders.kt -------------------------------------------------------------------------------- /firebase-common-internal/src/commonMain/kotlin/dev/gitlive/firebase/internal/EncodeDecodeSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common-internal/src/commonMain/kotlin/dev/gitlive/firebase/internal/EncodeDecodeSettings.kt -------------------------------------------------------------------------------- /firebase-common-internal/src/commonMain/kotlin/dev/gitlive/firebase/internal/EncodedObject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common-internal/src/commonMain/kotlin/dev/gitlive/firebase/internal/EncodedObject.kt -------------------------------------------------------------------------------- /firebase-common-internal/src/commonMain/kotlin/dev/gitlive/firebase/internal/Polymorphic.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common-internal/src/commonMain/kotlin/dev/gitlive/firebase/internal/Polymorphic.kt -------------------------------------------------------------------------------- /firebase-common-internal/src/commonMain/kotlin/dev/gitlive/firebase/internal/decoders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common-internal/src/commonMain/kotlin/dev/gitlive/firebase/internal/decoders.kt -------------------------------------------------------------------------------- /firebase-common-internal/src/commonMain/kotlin/dev/gitlive/firebase/internal/encoders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common-internal/src/commonMain/kotlin/dev/gitlive/firebase/internal/encoders.kt -------------------------------------------------------------------------------- /firebase-common-internal/src/commonMain/kotlin/dev/gitlive/firebase/internal/reencodeTransformation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common-internal/src/commonMain/kotlin/dev/gitlive/firebase/internal/reencodeTransformation.kt -------------------------------------------------------------------------------- /firebase-common-internal/src/commonMain/kotlin/dev/gitlive/firebase/internal/serializers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common-internal/src/commonMain/kotlin/dev/gitlive/firebase/internal/serializers.kt -------------------------------------------------------------------------------- /firebase-common-internal/src/commonTest/kotlin/dev/gitlive/firebase/internal/EncodersTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common-internal/src/commonTest/kotlin/dev/gitlive/firebase/internal/EncodersTest.kt -------------------------------------------------------------------------------- /firebase-common-internal/src/jsMain/kotlin/dev/gitlive/firebase/internal/EncodedObject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common-internal/src/jsMain/kotlin/dev/gitlive/firebase/internal/EncodedObject.kt -------------------------------------------------------------------------------- /firebase-common-internal/src/jsMain/kotlin/dev/gitlive/firebase/internal/_decoders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common-internal/src/jsMain/kotlin/dev/gitlive/firebase/internal/_decoders.kt -------------------------------------------------------------------------------- /firebase-common-internal/src/jsMain/kotlin/dev/gitlive/firebase/internal/_encoders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common-internal/src/jsMain/kotlin/dev/gitlive/firebase/internal/_encoders.kt -------------------------------------------------------------------------------- /firebase-common/api/android/firebase-common.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common/api/android/firebase-common.api -------------------------------------------------------------------------------- /firebase-common/api/jvm/firebase-common.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common/api/jvm/firebase-common.api -------------------------------------------------------------------------------- /firebase-common/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common/build.gradle.kts -------------------------------------------------------------------------------- /firebase-common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common/package.json -------------------------------------------------------------------------------- /firebase-common/src/commonMain/kotlin/dev/gitlive/firebase/EncodeDecodeSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common/src/commonMain/kotlin/dev/gitlive/firebase/EncodeDecodeSettings.kt -------------------------------------------------------------------------------- /firebase-common/src/commonMain/kotlin/dev/gitlive/firebase/FirebaseClassDiscriminator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common/src/commonMain/kotlin/dev/gitlive/firebase/FirebaseClassDiscriminator.kt -------------------------------------------------------------------------------- /firebase-common/src/commonMain/kotlin/dev/gitlive/firebase/FirebaseDecoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common/src/commonMain/kotlin/dev/gitlive/firebase/FirebaseDecoder.kt -------------------------------------------------------------------------------- /firebase-common/src/commonMain/kotlin/dev/gitlive/firebase/FirebaseEncoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common/src/commonMain/kotlin/dev/gitlive/firebase/FirebaseEncoder.kt -------------------------------------------------------------------------------- /firebase-common/src/jsMain/kotlin/dev/gitlive/firebase/Unsubscribe.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-common/src/jsMain/kotlin/dev/gitlive/firebase/Unsubscribe.kt -------------------------------------------------------------------------------- /firebase-config/api/android/firebase-config.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/api/android/firebase-config.api -------------------------------------------------------------------------------- /firebase-config/api/jvm/firebase-config.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/api/jvm/firebase-config.api -------------------------------------------------------------------------------- /firebase-config/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/build.gradle.kts -------------------------------------------------------------------------------- /firebase-config/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/documentation.md -------------------------------------------------------------------------------- /firebase-config/firebase_config.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/firebase_config.podspec -------------------------------------------------------------------------------- /firebase-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/package.json -------------------------------------------------------------------------------- /firebase-config/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/remoteconfig/RemoteConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/remoteconfig/RemoteConfig.kt -------------------------------------------------------------------------------- /firebase-config/src/androidMain/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/src/androidMain/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfig.kt -------------------------------------------------------------------------------- /firebase-config/src/androidMain/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfigValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/src/androidMain/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfigValue.kt -------------------------------------------------------------------------------- /firebase-config/src/androidUnitTest/kotlin/dev/gitlive/firebase/remoteconfig/RemoteConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/src/androidUnitTest/kotlin/dev/gitlive/firebase/remoteconfig/RemoteConfig.kt -------------------------------------------------------------------------------- /firebase-config/src/appleMain/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/src/appleMain/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfig.kt -------------------------------------------------------------------------------- /firebase-config/src/appleMain/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfigValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/src/appleMain/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfigValue.kt -------------------------------------------------------------------------------- /firebase-config/src/appleMain/kotlin/dev/gitlive/firebase/remoteconfig/NSDataExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/src/appleMain/kotlin/dev/gitlive/firebase/remoteconfig/NSDataExtension.kt -------------------------------------------------------------------------------- /firebase-config/src/appleTest/kotlin/dev/gitlive/firebase/remoteconfig/NSDataExtensionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/src/appleTest/kotlin/dev/gitlive/firebase/remoteconfig/NSDataExtensionTest.kt -------------------------------------------------------------------------------- /firebase-config/src/appleTest/kotlin/dev/gitlive/firebase/remoteconfig/RemoteConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/src/appleTest/kotlin/dev/gitlive/firebase/remoteconfig/RemoteConfig.kt -------------------------------------------------------------------------------- /firebase-config/src/commonMain/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/src/commonMain/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfig.kt -------------------------------------------------------------------------------- /firebase-config/src/commonMain/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfigInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/src/commonMain/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfigInfo.kt -------------------------------------------------------------------------------- /firebase-config/src/commonMain/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfigSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/src/commonMain/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfigSettings.kt -------------------------------------------------------------------------------- /firebase-config/src/commonMain/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfigValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/src/commonMain/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfigValue.kt -------------------------------------------------------------------------------- /firebase-config/src/commonTest/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/src/commonTest/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfig.kt -------------------------------------------------------------------------------- /firebase-config/src/jsMain/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/src/jsMain/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfig.kt -------------------------------------------------------------------------------- /firebase-config/src/jsMain/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfigValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/src/jsMain/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfigValue.kt -------------------------------------------------------------------------------- /firebase-config/src/jsMain/kotlin/dev/gitlive/firebase/remoteconfig/externals/remoteconfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/src/jsMain/kotlin/dev/gitlive/firebase/remoteconfig/externals/remoteconfig.kt -------------------------------------------------------------------------------- /firebase-config/src/jsTest/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/src/jsTest/kotlin/dev/gitlive/firebase/remoteconfig/FirebaseRemoteConfig.kt -------------------------------------------------------------------------------- /firebase-config/src/jvmTest/kotlin/dev/gitlive/firebase/remoteconfig/RemoteConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-config/src/jvmTest/kotlin/dev/gitlive/firebase/remoteconfig/RemoteConfig.kt -------------------------------------------------------------------------------- /firebase-crashlytics/api/firebase-crashlytics.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-crashlytics/api/firebase-crashlytics.api -------------------------------------------------------------------------------- /firebase-crashlytics/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-crashlytics/build.gradle.kts -------------------------------------------------------------------------------- /firebase-crashlytics/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-crashlytics/documentation.md -------------------------------------------------------------------------------- /firebase-crashlytics/firebase_crashlytics.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-crashlytics/firebase_crashlytics.podspec -------------------------------------------------------------------------------- /firebase-crashlytics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-crashlytics/package.json -------------------------------------------------------------------------------- /firebase-crashlytics/src/androidInstrumentedTest/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-crashlytics/src/androidInstrumentedTest/AndroidManifest.xml -------------------------------------------------------------------------------- /firebase-crashlytics/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/crashlytics/crashlytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-crashlytics/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/crashlytics/crashlytics.kt -------------------------------------------------------------------------------- /firebase-crashlytics/src/androidInstrumentedTest/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-crashlytics/src/androidInstrumentedTest/res/values/strings.xml -------------------------------------------------------------------------------- /firebase-crashlytics/src/androidMain/kotlin/dev/gitlive/firebase/crashlytics/crashlytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-crashlytics/src/androidMain/kotlin/dev/gitlive/firebase/crashlytics/crashlytics.kt -------------------------------------------------------------------------------- /firebase-crashlytics/src/androidUnitTest/kotlin/dev/gitlive/firebase/crashlytics/crashlytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-crashlytics/src/androidUnitTest/kotlin/dev/gitlive/firebase/crashlytics/crashlytics.kt -------------------------------------------------------------------------------- /firebase-crashlytics/src/appleMain/kotlin/dev/gitlive/firebase/crashlytics/crashlytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-crashlytics/src/appleMain/kotlin/dev/gitlive/firebase/crashlytics/crashlytics.kt -------------------------------------------------------------------------------- /firebase-crashlytics/src/appleTest/kotlin/dev/gitlive/firebase/crashlytics/crashlytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-crashlytics/src/appleTest/kotlin/dev/gitlive/firebase/crashlytics/crashlytics.kt -------------------------------------------------------------------------------- /firebase-crashlytics/src/commonMain/kotlin/dev/gitlive/firebase/crashlytics/crashlytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-crashlytics/src/commonMain/kotlin/dev/gitlive/firebase/crashlytics/crashlytics.kt -------------------------------------------------------------------------------- /firebase-crashlytics/src/commonTest/kotlin/dev/gitlive/firebase/crashlytics/crashlytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-crashlytics/src/commonTest/kotlin/dev/gitlive/firebase/crashlytics/crashlytics.kt -------------------------------------------------------------------------------- /firebase-crashlytics/src/jvmMain/kotlin/dev/gitlive/firebase/crashlytics/crashlytics.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-crashlytics/src/jvmMain/kotlin/dev/gitlive/firebase/crashlytics/crashlytics.jvm.kt -------------------------------------------------------------------------------- /firebase-database/api/android/firebase-database.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-database/api/android/firebase-database.api -------------------------------------------------------------------------------- /firebase-database/api/jvm/firebase-database.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-database/api/jvm/firebase-database.api -------------------------------------------------------------------------------- /firebase-database/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-database/build.gradle.kts -------------------------------------------------------------------------------- /firebase-database/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-database/documentation.md -------------------------------------------------------------------------------- /firebase-database/firebase_database.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-database/firebase_database.podspec -------------------------------------------------------------------------------- /firebase-database/karma.config.d/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-database/karma.config.d/karma.conf.js -------------------------------------------------------------------------------- /firebase-database/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-database/package.json -------------------------------------------------------------------------------- /firebase-database/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/database/database.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-database/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/database/database.kt -------------------------------------------------------------------------------- /firebase-database/src/androidMain/kotlin/dev/gitlive/firebase/database/ServerValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-database/src/androidMain/kotlin/dev/gitlive/firebase/database/ServerValue.kt -------------------------------------------------------------------------------- /firebase-database/src/androidMain/kotlin/dev/gitlive/firebase/database/database.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-database/src/androidMain/kotlin/dev/gitlive/firebase/database/database.kt -------------------------------------------------------------------------------- /firebase-database/src/androidUnitTest/kotlin/dev/gitlive/firebase/database/database.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-database/src/androidUnitTest/kotlin/dev/gitlive/firebase/database/database.kt -------------------------------------------------------------------------------- /firebase-database/src/appleMain/kotlin/dev/gitlive/firebase/database/ServerValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-database/src/appleMain/kotlin/dev/gitlive/firebase/database/ServerValue.kt -------------------------------------------------------------------------------- /firebase-database/src/appleMain/kotlin/dev/gitlive/firebase/database/database.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-database/src/appleMain/kotlin/dev/gitlive/firebase/database/database.kt -------------------------------------------------------------------------------- /firebase-database/src/appleTest/kotlin/dev/gitlive/firebase/database/database.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-database/src/appleTest/kotlin/dev/gitlive/firebase/database/database.kt -------------------------------------------------------------------------------- /firebase-database/src/commonMain/kotlin/dev/gitlive/firebase/database/ServerValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-database/src/commonMain/kotlin/dev/gitlive/firebase/database/ServerValue.kt -------------------------------------------------------------------------------- /firebase-database/src/commonMain/kotlin/dev/gitlive/firebase/database/database.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-database/src/commonMain/kotlin/dev/gitlive/firebase/database/database.kt -------------------------------------------------------------------------------- /firebase-database/src/commonTest/kotlin/dev/gitlive/firebase/database/database.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-database/src/commonTest/kotlin/dev/gitlive/firebase/database/database.kt -------------------------------------------------------------------------------- /firebase-database/src/jsMain/kotlin/dev/gitlive/firebase/database/ServerValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-database/src/jsMain/kotlin/dev/gitlive/firebase/database/ServerValue.kt -------------------------------------------------------------------------------- /firebase-database/src/jsMain/kotlin/dev/gitlive/firebase/database/database.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-database/src/jsMain/kotlin/dev/gitlive/firebase/database/database.kt -------------------------------------------------------------------------------- /firebase-database/src/jsMain/kotlin/dev/gitlive/firebase/database/externals/callbacks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-database/src/jsMain/kotlin/dev/gitlive/firebase/database/externals/callbacks.kt -------------------------------------------------------------------------------- /firebase-database/src/jsMain/kotlin/dev/gitlive/firebase/database/externals/database.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-database/src/jsMain/kotlin/dev/gitlive/firebase/database/externals/database.kt -------------------------------------------------------------------------------- /firebase-database/src/jsTest/kotlin/dev/gitlive/firebase/database/database.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-database/src/jsTest/kotlin/dev/gitlive/firebase/database/database.kt -------------------------------------------------------------------------------- /firebase-database/src/jvmTest/kotlin/dev/gitlive/firebase/database/database.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-database/src/jvmTest/kotlin/dev/gitlive/firebase/database/database.kt -------------------------------------------------------------------------------- /firebase-firestore/api/android/firebase-firestore.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/api/android/firebase-firestore.api -------------------------------------------------------------------------------- /firebase-firestore/api/jvm/firebase-firestore.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/api/jvm/firebase-firestore.api -------------------------------------------------------------------------------- /firebase-firestore/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/build.gradle.kts -------------------------------------------------------------------------------- /firebase-firestore/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/documentation.md -------------------------------------------------------------------------------- /firebase-firestore/firebase_firestore.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/firebase_firestore.podspec -------------------------------------------------------------------------------- /firebase-firestore/karma.config.d/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/karma.config.d/karma.conf.js -------------------------------------------------------------------------------- /firebase-firestore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/package.json -------------------------------------------------------------------------------- /firebase-firestore/src/androidInstrumentedTest/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/androidInstrumentedTest/AndroidManifest.xml -------------------------------------------------------------------------------- /firebase-firestore/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/firestore/Ignore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/firestore/Ignore.kt -------------------------------------------------------------------------------- /firebase-firestore/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/firestore/firestore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/firestore/firestore.kt -------------------------------------------------------------------------------- /firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/FieldValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/FieldValue.kt -------------------------------------------------------------------------------- /firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/GeoPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/GeoPoint.kt -------------------------------------------------------------------------------- /firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/Timestamp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/Timestamp.kt -------------------------------------------------------------------------------- /firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/_encoders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/_encoders.kt -------------------------------------------------------------------------------- /firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/firestore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/firestore.kt -------------------------------------------------------------------------------- /firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeCollectionReferenceWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeCollectionReferenceWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeDocumentReference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeDocumentReference.kt -------------------------------------------------------------------------------- /firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeDocumentSnapshotWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeDocumentSnapshotWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeFirebaseFirestoreWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeFirebaseFirestoreWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeQueryWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeQueryWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeTransactionWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeTransactionWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeWriteBatchWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeWriteBatchWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/internal/SetOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/internal/SetOptions.kt -------------------------------------------------------------------------------- /firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/internal/Source.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/internal/Source.kt -------------------------------------------------------------------------------- /firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/internal/callbackExecutorMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/internal/callbackExecutorMap.kt -------------------------------------------------------------------------------- /firebase-firestore/src/androidUnitTest/kotlin/dev/gitlive/firebase/firestore/Ignore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/androidUnitTest/kotlin/dev/gitlive/firebase/firestore/Ignore.kt -------------------------------------------------------------------------------- /firebase-firestore/src/androidUnitTest/kotlin/dev/gitlive/firebase/firestore/firestore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/androidUnitTest/kotlin/dev/gitlive/firebase/firestore/firestore.kt -------------------------------------------------------------------------------- /firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/FieldValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/FieldValue.kt -------------------------------------------------------------------------------- /firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/GeoPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/GeoPoint.kt -------------------------------------------------------------------------------- /firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/Timestamp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/Timestamp.kt -------------------------------------------------------------------------------- /firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/_encoders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/_encoders.kt -------------------------------------------------------------------------------- /firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/firestore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/firestore.kt -------------------------------------------------------------------------------- /firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeCollectionReferenceWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeCollectionReferenceWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeDocumentReference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeDocumentReference.kt -------------------------------------------------------------------------------- /firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeDocumentSnapshotWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeDocumentSnapshotWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeFirebaseFirestoreWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeFirebaseFirestoreWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeQueryWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeQueryWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeTransactionWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeTransactionWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeWriteBatchWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeWriteBatchWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/internal/Source.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/internal/Source.kt -------------------------------------------------------------------------------- /firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/internal/throwError.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/appleMain/kotlin/dev/gitlive/firebase/firestore/internal/throwError.kt -------------------------------------------------------------------------------- /firebase-firestore/src/appleTest/kotlin/dev/gitlive/firebase/firestore/ContextSwitchTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/appleTest/kotlin/dev/gitlive/firebase/firestore/ContextSwitchTest.kt -------------------------------------------------------------------------------- /firebase-firestore/src/appleTest/kotlin/dev/gitlive/firebase/firestore/Ignore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/appleTest/kotlin/dev/gitlive/firebase/firestore/Ignore.kt -------------------------------------------------------------------------------- /firebase-firestore/src/appleTest/kotlin/dev/gitlive/firebase/firestore/firestore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/appleTest/kotlin/dev/gitlive/firebase/firestore/firestore.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/DocumentReferenceSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/DocumentReferenceSerializer.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/FieldValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/FieldValue.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/FieldValueSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/FieldValueSerializer.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/FieldValuesDSL.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/FieldValuesDSL.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/FieldsAndValuesUpdateDSL.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/FieldsAndValuesUpdateDSL.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/Filter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/Filter.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/GeoPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/GeoPoint.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/GeoPointSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/GeoPointSerializer.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/LocalCacheSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/LocalCacheSettings.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/Timestamp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/Timestamp.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/TimestampSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/TimestampSerializer.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/encoders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/encoders.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/firestore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/firestore.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/helpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/helpers.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/internal/FieldAndValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/internal/FieldAndValue.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeCollectionReferenceWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeCollectionReferenceWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeDocumentReference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeDocumentReference.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeDocumentSnapshotWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeDocumentSnapshotWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeFirebaseFirestoreWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeFirebaseFirestoreWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeQueryWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeQueryWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeTransactionWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeTransactionWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeWriteBatchWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeWriteBatchWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/internal/SetOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/internal/SetOptions.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonTest/kotlin/dev/gitlive/firebase/firestore/DocumentReferenceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonTest/kotlin/dev/gitlive/firebase/firestore/DocumentReferenceTest.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonTest/kotlin/dev/gitlive/firebase/firestore/FieldValueTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonTest/kotlin/dev/gitlive/firebase/firestore/FieldValueTests.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonTest/kotlin/dev/gitlive/firebase/firestore/FirestoreSourceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonTest/kotlin/dev/gitlive/firebase/firestore/FirestoreSourceTest.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonTest/kotlin/dev/gitlive/firebase/firestore/GeoPointTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonTest/kotlin/dev/gitlive/firebase/firestore/GeoPointTests.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonTest/kotlin/dev/gitlive/firebase/firestore/Ignore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonTest/kotlin/dev/gitlive/firebase/firestore/Ignore.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonTest/kotlin/dev/gitlive/firebase/firestore/QueryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonTest/kotlin/dev/gitlive/firebase/firestore/QueryTest.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonTest/kotlin/dev/gitlive/firebase/firestore/TimestampTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonTest/kotlin/dev/gitlive/firebase/firestore/TimestampTests.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonTest/kotlin/dev/gitlive/firebase/firestore/TransactionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonTest/kotlin/dev/gitlive/firebase/firestore/TransactionTest.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonTest/kotlin/dev/gitlive/firebase/firestore/WriteBatchTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonTest/kotlin/dev/gitlive/firebase/firestore/WriteBatchTest.kt -------------------------------------------------------------------------------- /firebase-firestore/src/commonTest/kotlin/dev/gitlive/firebase/firestore/firestore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/commonTest/kotlin/dev/gitlive/firebase/firestore/firestore.kt -------------------------------------------------------------------------------- /firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/FieldValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/FieldValue.kt -------------------------------------------------------------------------------- /firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/GeoPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/GeoPoint.kt -------------------------------------------------------------------------------- /firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/Timestamp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/Timestamp.kt -------------------------------------------------------------------------------- /firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/_encoders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/_encoders.kt -------------------------------------------------------------------------------- /firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/externals/firestore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/externals/firestore.kt -------------------------------------------------------------------------------- /firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/firestore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/firestore.kt -------------------------------------------------------------------------------- /firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeCollectionReferenceWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeCollectionReferenceWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeDocumentReference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeDocumentReference.kt -------------------------------------------------------------------------------- /firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeDocumentSnapshotWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeDocumentSnapshotWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeFirebaseFirestoreWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeFirebaseFirestoreWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeQueryWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeQueryWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeTransactionWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeTransactionWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeWriteBatchWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/internal/NativeWriteBatchWrapper.kt -------------------------------------------------------------------------------- /firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/internal/SetOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/internal/SetOptions.kt -------------------------------------------------------------------------------- /firebase-firestore/src/jsTest/kotlin/dev/gitlive/firebase/firestore/Ignore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/jsTest/kotlin/dev/gitlive/firebase/firestore/Ignore.kt -------------------------------------------------------------------------------- /firebase-firestore/src/jsTest/kotlin/dev/gitlive/firebase/firestore/firestore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/jsTest/kotlin/dev/gitlive/firebase/firestore/firestore.kt -------------------------------------------------------------------------------- /firebase-firestore/src/jvmTest/kotlin/dev/gitlive/firebase/firestore/Ignore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/jvmTest/kotlin/dev/gitlive/firebase/firestore/Ignore.kt -------------------------------------------------------------------------------- /firebase-firestore/src/jvmTest/kotlin/dev/gitlive/firebase/firestore/firestore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-firestore/src/jvmTest/kotlin/dev/gitlive/firebase/firestore/firestore.kt -------------------------------------------------------------------------------- /firebase-functions/api/android/firebase-functions.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-functions/api/android/firebase-functions.api -------------------------------------------------------------------------------- /firebase-functions/api/jvm/firebase-functions.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-functions/api/jvm/firebase-functions.api -------------------------------------------------------------------------------- /firebase-functions/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-functions/build.gradle.kts -------------------------------------------------------------------------------- /firebase-functions/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-functions/documentation.md -------------------------------------------------------------------------------- /firebase-functions/firebase_functions.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-functions/firebase_functions.podspec -------------------------------------------------------------------------------- /firebase-functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-functions/package.json -------------------------------------------------------------------------------- /firebase-functions/src/androidMain/kotlin/dev/gitlive/firebase/functions/functions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-functions/src/androidMain/kotlin/dev/gitlive/firebase/functions/functions.kt -------------------------------------------------------------------------------- /firebase-functions/src/appleMain/kotlin/dev/gitlive/firebase/functions/functions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-functions/src/appleMain/kotlin/dev/gitlive/firebase/functions/functions.kt -------------------------------------------------------------------------------- /firebase-functions/src/commonMain/kotlin/dev/gitlive/firebase/functions/functions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-functions/src/commonMain/kotlin/dev/gitlive/firebase/functions/functions.kt -------------------------------------------------------------------------------- /firebase-functions/src/jsMain/kotlin/dev/gitlive/firebase/functions/externals/HttpsCallableExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-functions/src/jsMain/kotlin/dev/gitlive/firebase/functions/externals/HttpsCallableExt.kt -------------------------------------------------------------------------------- /firebase-functions/src/jsMain/kotlin/dev/gitlive/firebase/functions/externals/functions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-functions/src/jsMain/kotlin/dev/gitlive/firebase/functions/externals/functions.kt -------------------------------------------------------------------------------- /firebase-functions/src/jsMain/kotlin/dev/gitlive/firebase/functions/functions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-functions/src/jsMain/kotlin/dev/gitlive/firebase/functions/functions.kt -------------------------------------------------------------------------------- /firebase-installations/api/android/firebase-installations.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-installations/api/android/firebase-installations.api -------------------------------------------------------------------------------- /firebase-installations/api/jvm/firebase-installations.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-installations/api/jvm/firebase-installations.api -------------------------------------------------------------------------------- /firebase-installations/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-installations/build.gradle.kts -------------------------------------------------------------------------------- /firebase-installations/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-installations/documentation.md -------------------------------------------------------------------------------- /firebase-installations/firebase_installations.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-installations/firebase_installations.podspec -------------------------------------------------------------------------------- /firebase-installations/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-installations/package.json -------------------------------------------------------------------------------- /firebase-installations/src/androidMain/kotlin/dev/gitlive/firebase/installations/installations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-installations/src/androidMain/kotlin/dev/gitlive/firebase/installations/installations.kt -------------------------------------------------------------------------------- /firebase-installations/src/appleMain/kotlin/dev/gitlive/firebase/installations/installations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-installations/src/appleMain/kotlin/dev/gitlive/firebase/installations/installations.kt -------------------------------------------------------------------------------- /firebase-installations/src/commonMain/kotlin/dev/gitlive/firebase/installations/installations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-installations/src/commonMain/kotlin/dev/gitlive/firebase/installations/installations.kt -------------------------------------------------------------------------------- /firebase-installations/src/jsMain/kotlin/dev/gitlive/firebase/installations/externals/installations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-installations/src/jsMain/kotlin/dev/gitlive/firebase/installations/externals/installations.kt -------------------------------------------------------------------------------- /firebase-installations/src/jsMain/kotlin/dev/gitlive/firebase/installations/installations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-installations/src/jsMain/kotlin/dev/gitlive/firebase/installations/installations.kt -------------------------------------------------------------------------------- /firebase-messaging/api/android/firebase-messaging.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-messaging/api/android/firebase-messaging.api -------------------------------------------------------------------------------- /firebase-messaging/api/jvm/firebase-messaging.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-messaging/api/jvm/firebase-messaging.api -------------------------------------------------------------------------------- /firebase-messaging/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-messaging/build.gradle.kts -------------------------------------------------------------------------------- /firebase-messaging/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-messaging/documentation.md -------------------------------------------------------------------------------- /firebase-messaging/firebase_messaging.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-messaging/firebase_messaging.podspec -------------------------------------------------------------------------------- /firebase-messaging/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-messaging/package.json -------------------------------------------------------------------------------- /firebase-messaging/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/messaging/messaging.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-messaging/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/messaging/messaging.kt -------------------------------------------------------------------------------- /firebase-messaging/src/androidMain/kotlin/dev/gitlive/firebase/messaging/messaging.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-messaging/src/androidMain/kotlin/dev/gitlive/firebase/messaging/messaging.kt -------------------------------------------------------------------------------- /firebase-messaging/src/appleMain/kotlin/dev/gitlive/firebase/messaging/messaging.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-messaging/src/appleMain/kotlin/dev/gitlive/firebase/messaging/messaging.kt -------------------------------------------------------------------------------- /firebase-messaging/src/appleTest/kotlin/dev/gitlive/firebase/messaging/messaging.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-messaging/src/appleTest/kotlin/dev/gitlive/firebase/messaging/messaging.kt -------------------------------------------------------------------------------- /firebase-messaging/src/commonMain/kotlin/dev/gitlive/firebase/messaging/messaging.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-messaging/src/commonMain/kotlin/dev/gitlive/firebase/messaging/messaging.kt -------------------------------------------------------------------------------- /firebase-messaging/src/commonTest/kotlin/dev/gitlive/firebase/messaging/messaging.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-messaging/src/commonTest/kotlin/dev/gitlive/firebase/messaging/messaging.kt -------------------------------------------------------------------------------- /firebase-messaging/src/jsMain/kotlin/dev/gitlive/firebase/messaging/externals/messaging.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-messaging/src/jsMain/kotlin/dev/gitlive/firebase/messaging/externals/messaging.kt -------------------------------------------------------------------------------- /firebase-messaging/src/jsMain/kotlin/dev/gitlive/firebase/messaging/messaging.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-messaging/src/jsMain/kotlin/dev/gitlive/firebase/messaging/messaging.kt -------------------------------------------------------------------------------- /firebase-messaging/src/jvmMain/kotlin/dev/gitlive/firebase/messaging/messaging.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-messaging/src/jvmMain/kotlin/dev/gitlive/firebase/messaging/messaging.kt -------------------------------------------------------------------------------- /firebase-perf/api/android/firebase-perf.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/api/android/firebase-perf.api -------------------------------------------------------------------------------- /firebase-perf/api/jvm/firebase-perf.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/api/jvm/firebase-perf.api -------------------------------------------------------------------------------- /firebase-perf/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/build.gradle.kts -------------------------------------------------------------------------------- /firebase-perf/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/documentation.md -------------------------------------------------------------------------------- /firebase-perf/firebase_perf.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/firebase_perf.podspec -------------------------------------------------------------------------------- /firebase-perf/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/package.json -------------------------------------------------------------------------------- /firebase-perf/src/androidInstrumentedTest/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/src/androidInstrumentedTest/AndroidManifest.xml -------------------------------------------------------------------------------- /firebase-perf/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/perf/metrics/Trace.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/perf/metrics/Trace.kt -------------------------------------------------------------------------------- /firebase-perf/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/perf/performance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/perf/performance.kt -------------------------------------------------------------------------------- /firebase-perf/src/androidMain/kotlin/dev/gitlive/firebase/perf/metrics/Trace.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/src/androidMain/kotlin/dev/gitlive/firebase/perf/metrics/Trace.kt -------------------------------------------------------------------------------- /firebase-perf/src/androidMain/kotlin/dev/gitlive/firebase/perf/performance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/src/androidMain/kotlin/dev/gitlive/firebase/perf/performance.kt -------------------------------------------------------------------------------- /firebase-perf/src/androidMain/kotlin/dev/gitlive/firebase/perf/session/PerfSession.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/src/androidMain/kotlin/dev/gitlive/firebase/perf/session/PerfSession.kt -------------------------------------------------------------------------------- /firebase-perf/src/androidUnitTest/kotlin/dev/gitlive/firebase/perf/performance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/src/androidUnitTest/kotlin/dev/gitlive/firebase/perf/performance.kt -------------------------------------------------------------------------------- /firebase-perf/src/appleMain/kotlin/dev/gitlive/firebase/perf/metrics/Trace.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/src/appleMain/kotlin/dev/gitlive/firebase/perf/metrics/Trace.kt -------------------------------------------------------------------------------- /firebase-perf/src/appleMain/kotlin/dev/gitlive/firebase/perf/performance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/src/appleMain/kotlin/dev/gitlive/firebase/perf/performance.kt -------------------------------------------------------------------------------- /firebase-perf/src/appleTest/kotlin/dev/gitlive/firebase/perf/performance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/src/appleTest/kotlin/dev/gitlive/firebase/perf/performance.kt -------------------------------------------------------------------------------- /firebase-perf/src/commonMain/kotlin/dev/gitlive/firebase/perf/metrics/Trace.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/src/commonMain/kotlin/dev/gitlive/firebase/perf/metrics/Trace.kt -------------------------------------------------------------------------------- /firebase-perf/src/commonMain/kotlin/dev/gitlive/firebase/perf/performance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/src/commonMain/kotlin/dev/gitlive/firebase/perf/performance.kt -------------------------------------------------------------------------------- /firebase-perf/src/commonTest/kotlin/dev/gitlive/firebase/perf/metrics/Trace.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/src/commonTest/kotlin/dev/gitlive/firebase/perf/metrics/Trace.kt -------------------------------------------------------------------------------- /firebase-perf/src/commonTest/kotlin/dev/gitlive/firebase/perf/performance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/src/commonTest/kotlin/dev/gitlive/firebase/perf/performance.kt -------------------------------------------------------------------------------- /firebase-perf/src/jsMain/kotlin/dev/gitlive/firebase/perf/externals/performance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/src/jsMain/kotlin/dev/gitlive/firebase/perf/externals/performance.kt -------------------------------------------------------------------------------- /firebase-perf/src/jsMain/kotlin/dev/gitlive/firebase/perf/metrics/Trace.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/src/jsMain/kotlin/dev/gitlive/firebase/perf/metrics/Trace.kt -------------------------------------------------------------------------------- /firebase-perf/src/jsMain/kotlin/dev/gitlive/firebase/perf/performance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/src/jsMain/kotlin/dev/gitlive/firebase/perf/performance.kt -------------------------------------------------------------------------------- /firebase-perf/src/jsTest/kotlin/dev/gitlive/firebase/perf/metrics/Trace.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/src/jsTest/kotlin/dev/gitlive/firebase/perf/metrics/Trace.kt -------------------------------------------------------------------------------- /firebase-perf/src/jsTest/kotlin/dev/gitlive/firebase/perf/performance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/src/jsTest/kotlin/dev/gitlive/firebase/perf/performance.kt -------------------------------------------------------------------------------- /firebase-perf/src/jvmMain/kotlin/dev/gitlive/firebase/perf/metrics/Trace.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/src/jvmMain/kotlin/dev/gitlive/firebase/perf/metrics/Trace.jvm.kt -------------------------------------------------------------------------------- /firebase-perf/src/jvmMain/kotlin/dev/gitlive/firebase/perf/performance.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/src/jvmMain/kotlin/dev/gitlive/firebase/perf/performance.jvm.kt -------------------------------------------------------------------------------- /firebase-perf/src/jvmTest/kotlin/dev/gitlive/firebase/perf/performance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-perf/src/jvmTest/kotlin/dev/gitlive/firebase/perf/performance.kt -------------------------------------------------------------------------------- /firebase-storage/api/android/firebase-storage.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-storage/api/android/firebase-storage.api -------------------------------------------------------------------------------- /firebase-storage/api/jvm/firebase-storage.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-storage/api/jvm/firebase-storage.api -------------------------------------------------------------------------------- /firebase-storage/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-storage/build.gradle.kts -------------------------------------------------------------------------------- /firebase-storage/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-storage/documentation.md -------------------------------------------------------------------------------- /firebase-storage/firebase_storage.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-storage/firebase_storage.podspec -------------------------------------------------------------------------------- /firebase-storage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-storage/package.json -------------------------------------------------------------------------------- /firebase-storage/src/androidInstrumentedTest/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-storage/src/androidInstrumentedTest/AndroidManifest.xml -------------------------------------------------------------------------------- /firebase-storage/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/storage/storage.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-storage/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/storage/storage.android.kt -------------------------------------------------------------------------------- /firebase-storage/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/storage/storage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-storage/src/androidInstrumentedTest/kotlin/dev/gitlive/firebase/storage/storage.kt -------------------------------------------------------------------------------- /firebase-storage/src/androidMain/kotlin/dev/gitlive/firebase/storage/storage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-storage/src/androidMain/kotlin/dev/gitlive/firebase/storage/storage.kt -------------------------------------------------------------------------------- /firebase-storage/src/androidUnitTest/kotlin/dev/gitlive/firebase/storage/storage.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-storage/src/androidUnitTest/kotlin/dev/gitlive/firebase/storage/storage.android.kt -------------------------------------------------------------------------------- /firebase-storage/src/androidUnitTest/kotlin/dev/gitlive/firebase/storage/storage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-storage/src/androidUnitTest/kotlin/dev/gitlive/firebase/storage/storage.kt -------------------------------------------------------------------------------- /firebase-storage/src/appleMain/kotlin/dev/gitlive/firebase/storage/storage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-storage/src/appleMain/kotlin/dev/gitlive/firebase/storage/storage.kt -------------------------------------------------------------------------------- /firebase-storage/src/appleTest/kotlin/dev/gitlive/firebase/storage/storage.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-storage/src/appleTest/kotlin/dev/gitlive/firebase/storage/storage.ios.kt -------------------------------------------------------------------------------- /firebase-storage/src/appleTest/kotlin/dev/gitlive/firebase/storage/storage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-storage/src/appleTest/kotlin/dev/gitlive/firebase/storage/storage.kt -------------------------------------------------------------------------------- /firebase-storage/src/commonMain/kotlin/dev/gitlive/firebase/storage/storage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-storage/src/commonMain/kotlin/dev/gitlive/firebase/storage/storage.kt -------------------------------------------------------------------------------- /firebase-storage/src/commonTest/kotlin/dev/gitlive/firebase/storage/storage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-storage/src/commonTest/kotlin/dev/gitlive/firebase/storage/storage.kt -------------------------------------------------------------------------------- /firebase-storage/src/jsMain/kotlin/dev/gitlive/firebase/storage/externals/storage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-storage/src/jsMain/kotlin/dev/gitlive/firebase/storage/externals/storage.kt -------------------------------------------------------------------------------- /firebase-storage/src/jsMain/kotlin/dev/gitlive/firebase/storage/storage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-storage/src/jsMain/kotlin/dev/gitlive/firebase/storage/storage.kt -------------------------------------------------------------------------------- /firebase-storage/src/jsTest/kotlin/dev/gitlive/firebase/storage/storage.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-storage/src/jsTest/kotlin/dev/gitlive/firebase/storage/storage.js.kt -------------------------------------------------------------------------------- /firebase-storage/src/jsTest/kotlin/dev/gitlive/firebase/storage/storage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-storage/src/jsTest/kotlin/dev/gitlive/firebase/storage/storage.kt -------------------------------------------------------------------------------- /firebase-storage/src/jvmTest/kotlin/dev/gitlive/firebase/storage/storage.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-storage/src/jvmTest/kotlin/dev/gitlive/firebase/storage/storage.jvm.kt -------------------------------------------------------------------------------- /firebase-storage/src/jvmTest/kotlin/dev/gitlive/firebase/storage/storage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/firebase-storage/src/jvmTest/kotlin/dev/gitlive/firebase/storage/storage.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /test-utils/api/android/test-utils.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/test-utils/api/android/test-utils.api -------------------------------------------------------------------------------- /test-utils/api/jvm/test-utils.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/test-utils/api/jvm/test-utils.api -------------------------------------------------------------------------------- /test-utils/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/test-utils/build.gradle.kts -------------------------------------------------------------------------------- /test-utils/src/androidMain/kotlin/dev/gitlive/firebase/TestUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/test-utils/src/androidMain/kotlin/dev/gitlive/firebase/TestUtils.kt -------------------------------------------------------------------------------- /test-utils/src/appleMain/kotlin/dev/gitlive/firebase/TestUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/test-utils/src/appleMain/kotlin/dev/gitlive/firebase/TestUtils.kt -------------------------------------------------------------------------------- /test-utils/src/commonMain/kotlin/dev/gitlive/firebase/TestUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/test-utils/src/commonMain/kotlin/dev/gitlive/firebase/TestUtils.kt -------------------------------------------------------------------------------- /test-utils/src/jsMain/kotlin/dev/gitlive/firebase/TestUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/test-utils/src/jsMain/kotlin/dev/gitlive/firebase/TestUtils.kt -------------------------------------------------------------------------------- /test-utils/src/jvmMain/kotlin/dev/gitlive/firebase/TestUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/test-utils/src/jvmMain/kotlin/dev/gitlive/firebase/TestUtils.kt -------------------------------------------------------------------------------- /test/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/test/.firebaserc -------------------------------------------------------------------------------- /test/database.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/test/database.rules.json -------------------------------------------------------------------------------- /test/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/test/firebase.json -------------------------------------------------------------------------------- /test/firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/test/firestore.rules -------------------------------------------------------------------------------- /test/storage.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLiveApp/firebase-kotlin-sdk/HEAD/test/storage.rules --------------------------------------------------------------------------------