Skip to content

Commit

Permalink
Merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
christocracy committed Sep 4, 2024
2 parents 483b2e7 + 23a42d6 commit 792e707
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
* [iOS] Fix bug in iOS *Polygon Geofencing* when running in geofences-only mode (`.startGeofences`). iOS would mistakenly turn off location updates exactly 3 samples into the containing circular geofence of a polygon.
* Implement `notifyOnDwell` for polygon-geofences.

## 4.16.5 — 2024-07-12
* [Android][Expo] Conditionally add polygonLicense only if provided in Config. Do not write to AndroidManifest unless provided.

## 4.16.4 — 2024-07-08
* [Android][Expo] Implement polygonLicense Config option

## 4.16.3 — 2024-06-12
* [Android] Remove permission `FOREGROUND_SERVICE_HEALTH`. It turns out that this permission is no longer required whe
n the `ActivityRecognitionServivce` is defined with a `foregroundServiceType="shortservice"`, instead of `"health"`, which allows a background
Expand Down
12 changes: 7 additions & 5 deletions expo/plugin/src/androidPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,13 @@ const androidPlugin: ConfigPlugin<Props> = (config, props={}) => {
META_HMS_LICENSE_KEY,
props.hmsLicense || "UNDEFINED"
);
addMetaDataItemToMainApplication(
mainApplication,
META_POLYGON_LICENSE_KEY,
props.polygonLicense || "UNDEFINED"
);
if (props.polygonLicense) {
addMetaDataItemToMainApplication(
mainApplication,
META_POLYGON_LICENSE_KEY,
props.polygonLicense
);
}
return config;

});
Expand Down

0 comments on commit 792e707

Please sign in to comment.