background_geolocation_firebase 1.0.0 background_geolocation_firebase: ^1.0.0 copied to clipboard
A Firebase adapter for the flutter_background_geolocation plugin. Automatically syncs recorded locations to your Firestore database.
CHANGELOG #
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.0
no longer allows "direct local aar dependencies". The Android Setup now requires a custommaven url
to 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