@transistorsoft/capacitor-background-geolocation 4.11.4 → 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 +4 -0
- package/android/libs/com/transistorsoft/tslocationmanager/maven-metadata.xml +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
|
@@ -48,6 +48,10 @@ def safeExtGet(prop, fallback) {
|
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
android {
|
|
51
|
+
if (project.android.hasProperty("namespace")) {
|
|
52
|
+
namespace("com.transistorsoft.bggeo.capacitor")
|
|
53
|
+
}
|
|
54
|
+
|
|
51
55
|
compileSdkVersion safeExtGet('compileSdkVersion', DEFAULT_COMPILE_SDK_VERSION)
|
|
52
56
|
defaultConfig {
|
|
53
57
|
minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 21
|
|
@@ -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",
|