Release notes
August 19, 2024
Android Places 3.0.1
- Removed unused
app_name
string resource to prevent conflicts with resources defined by the app.
June 6, 2024
React Native Places 6.0.2
- Updated typescript files to support strict null checks.
April 24, 2024
React Native Places 6.0.1
- Added namespace support to the Android module.
April 12, 2024
React Native Places 6.0.0
Major version update for Places for Adobe Experience Platform React Native Library compatible with React Native Core 6.0.0. The current release includes the following changes:
- Updated to use Experience Platform Android
3.x
SDKs. - Updated to use Experience Platform iOS
5.x
SDKs.
April 2, 2024
Android Places 3.0.0
Major version update for Places for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 3.0.0. The current release includes the following changes:
- Updated the minimum supported Android API level to 21.
- Removed deprecated
registerExtension
API. Use the MobileCore.registerExtensions() API for registering extensions and initializing the SDK instead.
March 20, 2024
iOS Places 5.0.0
Major version update for Places for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 5.0.0. The current release includes the following changes:
- Updated the minimum supported version to iOS 12.0.
- Include XCFrameworks built with Xcode 15.0.1 with the GitHub release.
- Fixes a bug where limit was not being respected in calls to
getNearbyPointsOfInterest
.
February 27, 2024
iOS Places 4.1.1
- Added max versions to Platform dependencies in podspec
Aug 8, 2023
iOS Places 4.1.0 and Android Places 2.1.0
- Added support for forwarding location entry and exit events to Adobe Experience Platform. For more information, refer to the Places Service event forwarding to Adobe Experience Platform guide.
June 6, 2023
iOS Places 4.0.0
Major version update for Adobe Experience Platform Location Service for Adobe Experience Platform Mobile SDKs on iOS compatible with Mobile Core 4.0.0. The current release includes the following changes:
- Updated the minimum supported version to iOS 11.0.
- Include XCFrameworks built with Xcode 14.1 with the GitHub release.
March 6, 2023
iOS Places 3.0.3
- Fixed the friendly name for the extension to be
Places
instead of fully qualified extension name. - Updated
nearbyPois
in shared state to be an array of POI objects (represented as dictionaries).
February 3, 2023
Android Places 2.0.0
- Major version update for Adobe Experience Platform Location Service for Adobe Experience Platform Mobile SDKs on Android compatible with Mobile Core 2.0.0. This library is now available as an open source project on GitHub.
Please note that the following improvements have been made in the current release:
- The
getNearbyPointsOfInterest
API without the errorCallback has been removed. Alternatively, use the below overloaded API which provides both successCallback and errorCallback:
Copied to your clipboardpublic static void getNearbyPointsOfInterest(final Location location,final int limit,final AdobeCallback<List<PlacesPOI>> successCallback,final AdobeCallback<PlacesRequestError> errorCallback)
- The public classes
PlacesAuthorizationStatus
,PlacesPOI
, andPlacesRequestError
are consolidated under theplaces
subpackage and require updating the import statements as shown below:
Copied to your clipboardimport com.adobe.marketing.mobile.places.PlacesAuthorizationStatus;import com.adobe.marketing.mobile.places.PlacesPOI;import com.adobe.marketing.mobile.places.PlacesRequestError;