@transistorsoft/capacitor-background-geolocation 4.11.3 → 4.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/build.gradle +13 -2
- package/android/libs/com/transistorsoft/tslocationmanager/3.4.0/tslocationmanager-3.4.0.aar +0 -0
- package/android/libs/com/transistorsoft/tslocationmanager/3.4.0/tslocationmanager-3.4.0.aar.md5 +1 -1
- package/android/libs/com/transistorsoft/tslocationmanager/3.4.0/tslocationmanager-3.4.0.aar.sha1 +1 -1
- package/android/libs/com/transistorsoft/tslocationmanager/3.4.0/tslocationmanager-3.4.0.aar.sha256 +1 -1
- package/android/libs/com/transistorsoft/tslocationmanager/3.4.0/tslocationmanager-3.4.0.aar.sha512 +1 -1
- package/android/libs/com/transistorsoft/tslocationmanager/maven-metadata.xml +1 -1
- package/android/libs/com/transistorsoft/tslocationmanager-v21/3.4.0/tslocationmanager-v21-3.4.0.aar +0 -0
- package/android/libs/com/transistorsoft/tslocationmanager-v21/3.4.0/tslocationmanager-v21-3.4.0.aar.md5 +1 -1
- package/android/libs/com/transistorsoft/tslocationmanager-v21/3.4.0/tslocationmanager-v21-3.4.0.aar.sha1 +1 -1
- package/android/libs/com/transistorsoft/tslocationmanager-v21/3.4.0/tslocationmanager-v21-3.4.0.aar.sha256 +1 -1
- package/android/libs/com/transistorsoft/tslocationmanager-v21/3.4.0/tslocationmanager-v21-3.4.0.aar.sha512 +1 -1
- package/android/libs/com/transistorsoft/tslocationmanager-v21/maven-metadata.xml +1 -1
- package/dist/declarations/interfaces/Config.d.ts +1 -1
- package/ios/TSLocationManager.xcframework/Info.plist +5 -5
- package/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/Info.plist +0 -0
- package/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/TSLocationManager +0 -0
- package/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/Resources/Info.plist +1 -1
- package/ios/TSLocationManager.xcframework/ios-arm64_x86_64-maccatalyst/TSLocationManager.framework/TSLocationManager +0 -0
- package/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/Info.plist +0 -0
- package/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/TSLocationManager +0 -0
- package/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/_CodeSignature/CodeDirectory +0 -0
- package/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/_CodeSignature/CodeRequirements-1 +0 -0
- package/ios/TSLocationManager.xcframework/ios-arm64_x86_64-simulator/TSLocationManager.framework/_CodeSignature/CodeResources +1 -1
- package/package.json +2 -2
package/android/build.gradle
CHANGED
|
@@ -40,12 +40,18 @@ def DEFAULT_EVENTBUS_VERSION = "3.3.1"
|
|
|
40
40
|
def DEFAULT_LOCAL_BROADCAST_MANAGER_VERSION = "1.0.0"
|
|
41
41
|
def DEFAULT_LIFE_CYCLE_RUNTIME_VERSION = "2.4.1"
|
|
42
42
|
def DEFAULT_LIFE_CYCLE_EXTENSIONS_VERSION = "2.2.0"
|
|
43
|
+
def DEFAULT_LOGBACK_VERSION = "3.0.0"
|
|
44
|
+
def DEFAULT_SLF4J_VERSION = "2.0.7"
|
|
43
45
|
|
|
44
46
|
def safeExtGet(prop, fallback) {
|
|
45
47
|
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
|
|
46
48
|
}
|
|
47
49
|
|
|
48
50
|
android {
|
|
51
|
+
if (project.android.hasProperty("namespace")) {
|
|
52
|
+
namespace("com.transistorsoft.bggeo.capacitor")
|
|
53
|
+
}
|
|
54
|
+
|
|
49
55
|
compileSdkVersion safeExtGet('compileSdkVersion', DEFAULT_COMPILE_SDK_VERSION)
|
|
50
56
|
defaultConfig {
|
|
51
57
|
minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 21
|
|
@@ -86,6 +92,8 @@ dependencies {
|
|
|
86
92
|
|
|
87
93
|
def lifeCycleRuntimeVersion = safeExtGet('lifeCycleRuntimeVersion', DEFAULT_LIFE_CYCLE_RUNTIME_VERSION)
|
|
88
94
|
def lifeCycleExtensionsVersion = safeExtGet('lifeCycleExtensionsVersion', DEFAULT_LIFE_CYCLE_EXTENSIONS_VERSION)
|
|
95
|
+
def logbackVersion = safeExtGet('logbackVersion', DEFAULT_LOGBACK_VERSION);
|
|
96
|
+
def slf4jVersion = safeExtGet('slf4jVersion', DEFAULT_SLF4J_VERSION);
|
|
89
97
|
|
|
90
98
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
91
99
|
implementation project(':capacitor-android')
|
|
@@ -110,8 +118,11 @@ dependencies {
|
|
|
110
118
|
|
|
111
119
|
api "org.greenrobot:eventbus:$eventBusVersion"
|
|
112
120
|
api "com.squareup.okhttp3:okhttp:$okHttpVersion"
|
|
113
|
-
|
|
114
|
-
|
|
121
|
+
|
|
122
|
+
// logback-android
|
|
123
|
+
implementation "com.github.tony19:logback-android:$logbackVersion"
|
|
124
|
+
implementation "org.slf4j:slf4j-api:$slf4jVersion"
|
|
125
|
+
|
|
115
126
|
implementation "io.github.nishkarsh:android-permissions:$androidPermissionsVersion"
|
|
116
127
|
// LifeCycleObserver
|
|
117
128
|
implementation "androidx.lifecycle:lifecycle-runtime:$lifeCycleRuntimeVersion"
|
|
Binary file
|
package/android/libs/com/transistorsoft/tslocationmanager/3.4.0/tslocationmanager-3.4.0.aar.md5
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
d140825285ced25ef1f5a1017090b9b5
|
package/android/libs/com/transistorsoft/tslocationmanager/3.4.0/tslocationmanager-3.4.0.aar.sha1
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
9b4d84096892365e7f60f160fc4496fc2c9aee4d
|
package/android/libs/com/transistorsoft/tslocationmanager/3.4.0/tslocationmanager-3.4.0.aar.sha256
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
8c5c7f19fbf7b863f25886563db1f76de4488de6437bd0920ea34e8ad754b665
|
package/android/libs/com/transistorsoft/tslocationmanager/3.4.0/tslocationmanager-3.4.0.aar.sha512
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
d25d58ee94fd37904b6b96588e2c1be636d90cd2517967dfc575c88bc1ea079cd311273ad003db9b7d4452b488bb38dafbbd59ae0f2a1b9375640be3a771b737
|
package/android/libs/com/transistorsoft/tslocationmanager-v21/3.4.0/tslocationmanager-v21-3.4.0.aar
CHANGED
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
881f41140566100127c286823f3110d3
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
487071a922f277a31b8a85036dbdb7f253ee2a05
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
16b91794a614abb7c5c415f8e3ed1278d364d9aa35883d3f6629b3d13f7ae9f5
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
172805734cb1d953c2c128fe3a63e3dbf903795b10f72b7726097dfd9eeff689ef090d050050c3b1487e17fdc479273aa1a037872d71f9ed550e6d48fe57eb59
|
|
@@ -1739,7 +1739,7 @@ declare module "@transistorsoft/capacitor-background-geolocation" {
|
|
|
1739
1739
|
/**
|
|
1740
1740
|
* [__iOS Only__] A Boolean indicating whether the status bar changes its appearance when an app uses location services in the background with `Always` authorization.
|
|
1741
1741
|
*
|
|
1742
|
-
* The default value of this property is `
|
|
1742
|
+
* The default value of this property is `true`. The background location usage indicator is a blue bar or a blue pill in the status bar on iOS; on watchOS the indicator is a small icon. Users can tap the indicator to return to your app.
|
|
1743
1743
|
*
|
|
1744
1744
|
* This property affects only apps that received `Always` authorization. When such an app moves to the background, the system uses this property to determine whether to change the status bar appearance to indicate that location services are in use. Set this value to true to maintain transparency with the user.
|
|
1745
1745
|
*
|
|
@@ -6,15 +6,18 @@
|
|
|
6
6
|
<array>
|
|
7
7
|
<dict>
|
|
8
8
|
<key>LibraryIdentifier</key>
|
|
9
|
-
<string>ios-
|
|
9
|
+
<string>ios-arm64_x86_64-maccatalyst</string>
|
|
10
10
|
<key>LibraryPath</key>
|
|
11
11
|
<string>TSLocationManager.framework</string>
|
|
12
12
|
<key>SupportedArchitectures</key>
|
|
13
13
|
<array>
|
|
14
14
|
<string>arm64</string>
|
|
15
|
+
<string>x86_64</string>
|
|
15
16
|
</array>
|
|
16
17
|
<key>SupportedPlatform</key>
|
|
17
18
|
<string>ios</string>
|
|
19
|
+
<key>SupportedPlatformVariant</key>
|
|
20
|
+
<string>maccatalyst</string>
|
|
18
21
|
</dict>
|
|
19
22
|
<dict>
|
|
20
23
|
<key>LibraryIdentifier</key>
|
|
@@ -33,18 +36,15 @@
|
|
|
33
36
|
</dict>
|
|
34
37
|
<dict>
|
|
35
38
|
<key>LibraryIdentifier</key>
|
|
36
|
-
<string>ios-
|
|
39
|
+
<string>ios-arm64</string>
|
|
37
40
|
<key>LibraryPath</key>
|
|
38
41
|
<string>TSLocationManager.framework</string>
|
|
39
42
|
<key>SupportedArchitectures</key>
|
|
40
43
|
<array>
|
|
41
44
|
<string>arm64</string>
|
|
42
|
-
<string>x86_64</string>
|
|
43
45
|
</array>
|
|
44
46
|
<key>SupportedPlatform</key>
|
|
45
47
|
<string>ios</string>
|
|
46
|
-
<key>SupportedPlatformVariant</key>
|
|
47
|
-
<string>maccatalyst</string>
|
|
48
48
|
</dict>
|
|
49
49
|
</array>
|
|
50
50
|
<key>CFBundlePackageType</key>
|
|
Binary file
|
package/ios/TSLocationManager.xcframework/ios-arm64/TSLocationManager.framework/TSLocationManager
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@transistorsoft/capacitor-background-geolocation",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.12.0",
|
|
4
4
|
"description": "The most sophisticated cross platform Capacitor background location tracking & geofencing module with battery-conscious motion-detection intelligence",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"prepublishOnly": "npm run build"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@transistorsoft/capacitor-background-fetch": "^1.0.
|
|
57
|
+
"@transistorsoft/capacitor-background-fetch": "^1.0.4"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@capacitor/android": "^4.0.0",
|