background_geolocation_firebase 1.1.0  background_geolocation_firebase: ^1.1.0 copied to clipboard
background_geolocation_firebase: ^1.1.0 copied to clipboard
A Firebase adapter for the flutter_background_geolocation plugin. Automatically syncs recorded locations to your Firestore database.
CHANGELOG #
1.1.0 - 2024-10-16 #
- Update Firebase/Firestore dependencies for both iOS and Android.
- [Android] Update Gradle config.  Add required namespaceattribute.
- [Android] Introduce new Gradle ext.FirebaseSDKVersionparam for controlling / aligning the imported version of Firebase SDK with other libraries.
1.0.1 - 2023-08-20 #
- [Android] Update example gradle version. Update plugin default firebaseCoreVersion, firestoreVersion to latest versions.
1.0.0 - 2021-09-21 #
- [Fixed][Android] Update Android plugin to V2 spec.
1.0.0-nullsafety.1 - 2021-05-07 #
- [Changed] Add nullsafety support
0.2.0 - 2020-07-13 #
- [Fixed][Android] com.android.tools.build:gradle:4.0.0no longer allows "direct local aar dependencies". The Android Setup now requires a custommaven urlto be added to your app's rootandroid/build.gradle:
allprojects {
    repositories {
        google()
        jcenter()
+       maven {
+           // [required] background_geolocation_firebase
+           url "${project(':background_geolocation_firebase').projectDir}/libs"
+       }
    }
}
0.1.0 — 2019-08-20 #
- Release to pub.dev
0.0.2 — 2019-05-24 #
- [Fixed] Android issue not registering plugin in terminated state.
0.0.1 — 2019-05-23 #
- First working implementation