Skip to content

Commit

Permalink
Merge branch 'release-4.17.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
christocracy committed Oct 1, 2024
2 parents 60a9ff6 + df67187 commit 9e094ee
Show file tree
Hide file tree
Showing 37 changed files with 92 additions and 93 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## 4.17.2 — 2024-10-01
* [Android] Address possible leak of `Activity` reference when terminating the app. Ensure internal reference to `Activity` is nullified when app is terminated.
* [Android] Add improvements to Android geofencing-only mode with `goefenceModeHighAccuracy: true` where motion-activity updates disabled.
* [Android] Add error-checking in polygon-geofencing to handle a possible `NullPointerException`.

## 4.17.1 — 2024-09-05
* [Expo] Fix bug in Expo plugin adding unused license keys for "polygon geofencing" with a value of `UNDEFINED`, causing license-validation error. Add logic to automatically remove license keys from `AndroidManifest` when corresponding keys are not found in your `app.json` (eg: `polygonLicense`).

Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
cc5bfaeff189174153b6a846f3bc83e7
1cf40d0efafc8bb33c95489f894bf293
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5be3f8516480f686b90803db356177b1b54685f1
f8a3f1c1f57f8a02d5288801f4c3e0fb6fdae7d8
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10bf59c29dca1c047f7d375731462a3ee8a7567744e0cf9ba3e0d20feddc3fd5
7362a798727ff0920e90f29a63ebe4767ac0847f6aa27972871d2f9165cbbd56
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7f2eab53520bb9b47edbca4b3c1f0d1bcf23a2c19abe3a5d53233f06ad7e06229e3b274f93546f4d7cd018064b3c8f8613539c5eca767fc5b1e738e7f776b5cc
072c278dc5a3170aa1a5529a531b46047c1a77345c3216a0b56a1d7010d1244a9e418fa6e428d77edbedb6abf4232b23e792e4af25c83188aea5b8adb715274f
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,8 @@
<latest>3.5.5</latest>
<release>3.5.5</release>
<versions>
<version>3.4.6</version>
<version>3.5.0</version>
<version>3.5.1</version>
<version>3.5.2</version>
<version>3.5.3</version>
<version>3.5.4</version>
<version>3.5.5</version>
</versions>
<lastUpdated>20240828142616</lastUpdated>
<lastUpdated>20241001141533</lastUpdated>
</versioning>
</metadata>
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
17bb6e5f1fb04d4c11463fdff887e637
f8cfcf8e5a7ec8c9ed4bda381d3efdeb
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5b5da7e6ea0c333d3e6bf832cb5f7eb6e05f93ce
d1a5afbf1c3c7e36ad169f0b14c47fc6802a2b8d
Original file line number Diff line number Diff line change
@@ -1 +1 @@
94491028d10d93b0ee1bacbab5f776f38aff0313f1e17304aee588e8834e20a7
3addd9a88ac61f70ccbb931011248ab2d498a3a66cb2b85f373b9dbd067ecca1
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9b18f203d642fd7d71a5377d3d8365eddb963949d46938ccd237fcdce309383b59c282aae1e963a79cfa9e5153997ecb97769b8f931aaafbe48c54d6b12c81b6
7c74a31e5b339ac2ebcaf9eabad9d4c7260ba7f8a3210c29c7a1bf62c21a8f5bb67aeeb801b93fe2bdc17caad6db45e5a4962d4a065427f0391b5e8c8237d929
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,8 @@
<latest>3.5.5</latest>
<release>3.5.5</release>
<versions>
<version>3.4.6</version>
<version>3.5.0</version>
<version>3.5.1</version>
<version>3.5.2</version>
<version>3.5.3</version>
<version>3.5.4</version>
<version>3.5.5</version>
</versions>
<lastUpdated>20240828142616</lastUpdated>
<lastUpdated>20241001141533</lastUpdated>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,13 @@ public void onHostResume() {
if (!mInitialized) {
initializeLocationManager();
}
Activity activity = getCurrentActivity();
if (activity == null) {
return;
}
getAdapter().setActivity(activity);
}

@Override
public void onHostPause() {
Context context = getReactApplicationContext();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,17 @@
<array>
<dict>
<key>BinaryPath</key>
<string>TSLocationManager.framework/Versions/A/TSLocationManager</string>
<string>TSLocationManager.framework/TSLocationManager</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-maccatalyst</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>TSLocationManager.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>maccatalyst</string>
</dict>
<dict>
<key>BinaryPath</key>
Expand All @@ -40,17 +37,20 @@
</dict>
<dict>
<key>BinaryPath</key>
<string>TSLocationManager.framework/TSLocationManager</string>
<string>TSLocationManager.framework/Versions/A/TSLocationManager</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-maccatalyst</string>
<key>LibraryPath</key>
<string>TSLocationManager.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>maccatalyst</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit 9e094ee

Please sign in to comment.