Release notes

May 19, 2025

React Native Places 7.0.1

March 28, 2025

React Native Places 7.0.0

February 10, 2025

Android Places 3.0.2

January 14, 2025

React Native Places 6.0.3

August 19, 2024

Android Places 3.0.1

June 6, 2024

React Native Places 6.0.2

April 24, 2024

React Native Places 6.0.1

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:

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:

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:

February 27, 2024

iOS Places 4.1.1

Aug 8, 2023

iOS Places 4.1.0 and Android Places 2.1.0

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:

March 6, 2023

iOS Places 3.0.3

February 3, 2023

Android Places 2.0.0

Please note that the following improvements have been made in the current release:

  1. The getNearbyPointsOfInterest API without the errorCallback has been removed. Alternatively, use the below overloaded API which provides both successCallback and errorCallback:
public static void getNearbyPointsOfInterest(final Location location,
      final int limit,
      final AdobeCallback<List<PlacesPOI>> successCallback,
      final AdobeCallback<PlacesRequestError> errorCallback)
  1. The public classes PlacesAuthorizationStatus, PlacesPOI, and PlacesRequestError are consolidated under the places subpackage and require updating the import statements as shown below:
import com.adobe.marketing.mobile.places.PlacesAuthorizationStatus;
import com.adobe.marketing.mobile.places.PlacesPOI;
import com.adobe.marketing.mobile.places.PlacesRequestError;