cordova-background-geolocation-plugin
Advanced tools
Comparing version 1.0.0-rc.4 to 1.0.0-rc.5
# Changelog | ||
## [v1.0.0-rc.5](https://github.com/HaylLtd/cordova-background-geolocation-plugin/tree/v1.0.0-rc.5) (2021-05-03) | ||
**Fixed bugs:** | ||
- Missing org.apache.http.legacy library dependency [\#24](https://github.com/HaylLtd/cordova-background-geolocation-plugin/issues/24) | ||
- \[Android\] Fresh install fails on resources \(icon\) not found [\#23](https://github.com/HaylLtd/cordova-background-geolocation-plugin/issues/23) | ||
**Closed issues:** | ||
- Move platform specific sub modules into main repository [\#22](https://github.com/HaylLtd/cordova-background-geolocation-plugin/issues/22) | ||
**Merged pull requests:** | ||
- Fix for missing Android icons [\#26](https://github.com/HaylLtd/cordova-background-geolocation-plugin/pull/26) ([RaddishIoW](https://github.com/RaddishIoW)) | ||
- Fix for missing org.apache.http.legacy library dependency [\#25](https://github.com/HaylLtd/cordova-background-geolocation-plugin/pull/25) ([RaddishIoW](https://github.com/RaddishIoW)) | ||
## [1.0.0-rc.4](https://github.com/HaylLtd/cordova-background-geolocation-plugin/tree/1.0.0-rc.4) (2021-05-02) | ||
## [1.0.0-rc.3](https://github.com/HaylLtd/cordova-background-geolocation-plugin/tree/1.0.0-rc.3) (2021-05-02) | ||
@@ -4,0 +22,0 @@ |
{ | ||
"name": "cordova-background-geolocation-plugin", | ||
"version": "1.0.0-rc.4", | ||
"version": "1.0.0-rc.5", | ||
"description": "Cordova Background Geolocation Plugin", | ||
@@ -31,9 +31,6 @@ "main": "./www/BackgroundGeolocation.js", | ||
"cordovaDependencies": { | ||
"0.0.1": { | ||
"cordova": ">=3.0.0" | ||
}, | ||
"2.3.3": { | ||
"cordova-ios": ">=4.4.0", | ||
"cordova-android": ">=6.3.0", | ||
"cordova": ">=7.1.0" | ||
"1.0.0": { | ||
"cordova": ">=8.0.0", | ||
"cordova-android": ">=8.0.0", | ||
"cordova-ios": ">=6.0.0" | ||
} | ||
@@ -40,0 +37,0 @@ } |
@@ -60,3 +60,3 @@ # Cordova Background Geolocation Plugin | ||
--variable GOOGLE_PLAY_SERVICES_VERSION=11+ \ | ||
--variable ANDROID_SUPPORT_LIBRARY_VERSION=23+ \ | ||
--variable ANDROID_SUPPORT_LIBRARY_VERSION=26+ \ | ||
--variable ALWAYS_USAGE_DESCRIPTION="App requires ..." \ | ||
@@ -66,15 +66,2 @@ --variable MOTION_USAGE_DESCRIPTION="App requires motion detection" | ||
Or in `config.xml`: | ||
```xml | ||
<plugin name="cordova-background-geolocation-plugin" spec="cordova-background-geolocation-plugin@~3.1.0"> | ||
<variable name="GOOGLE_PLAY_SERVICES_VERSION" value="11+" /> | ||
<variable name="ANDROID_SUPPORT_LIBRARY_VERSION" value="26+" /> | ||
<variable name="ICON" value="@mipmap/icon" /> | ||
<variable name="SMALL_ICON" value="@mipmap/icon" /> | ||
<variable name="ALWAYS_USAGE_DESCRIPTION" value="App requires background tracking " /> | ||
<variable name="MOTION_USAGE_DESCRIPTION" value="App requires motion detection" /> | ||
</plugin> | ||
``` | ||
**Note:** To apply changes, you must remove and reinstall plugin. | ||
@@ -99,6 +86,5 @@ | ||
|------------------|-------------------|--------------------------|----------------------| | ||
| <2.3.0 | 6.4.0 | 6.3.0 | 4.4.0 | | ||
| >=2.3.0 | 7.1.0 | 6.3.0 | 4.4.0 | | ||
| >1.0.0 | 8.0.0 | 8.0.0 | 6.0.0 | | ||
**Please note** that as of Cordova Android 6.0.0 icons are by default in mipmap/ directory not drawable/ directory, so this plugin will have a build issue on < 6.0.0 Cordova builds, you will need to update Authenticator.xml to drawable directory from mipmap directory to work on older versions. | ||
**Please note** that as of Cordova Android 8.0.0 icons are by default mipmap/ic_launcher not mipmap/icon, so this plugin will have a build issue on < 8.0.0 Cordova Android builds, you will need to update the icons in AndroidManifest.xml to work on older versions. | ||
@@ -109,11 +95,11 @@ ### Android SDKs | ||
| Name | Version | | ||
|----------------------------|---------| | ||
| Android SDK Tools | 26.0.2 | | ||
| Android SDK Platform-tools | 26.0.2 | | ||
| Android SDK Build-tools | 26.0.2 | | ||
| Android Support Repository | 47 | | ||
| Android Support Library | 26.1.0 | | ||
| Google Play Services | 11.8.0 | | ||
| Google Repository | 58 | | ||
| Name | Version | | ||
|----------------------------|----------| | ||
| Android SDK Tools | >26.0.2 | | ||
| Android SDK Platform-tools | >26.0.2 | | ||
| Android SDK Build-tools | >26.0.2 | | ||
| Android Support Repository | >47 | | ||
| Android Support Library | >26.1.0 | | ||
| Google Play Services | >11.8.0 | | ||
| Google Repository | >58 | | ||
@@ -120,0 +106,0 @@ Android is no longer supporting downloading support libraries through the SDK Manager. |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1757481
729