Changelog
This is the log of notable changes to the Expo Google Places library. Is recommended to check this page before updating the library to a new version.
v0.2.7 - 2025-04-26
- The
android/src/main/java/expo/modules/googleplaces/ExpoGooglePlacesMiscellaneous.ktfile has been updated to fix the issue reported in the #16 issue by @thatAwesomeKK where theorigin,locationBiasandlocationRestrictionproperties were not being cast as expected. - The
ios/ExpoGooglePlacesMiscellaneous.swiftfile has been updated to fix the issue reported in the #17 issue by @maxkudla where theorigin,locationBiasandlocationRestrictionproperties were not being cast as expected. - Example app updated to use the latest Expo SDK 52 version.
v0.2.6 - 2025-04-25
android/build.gradlefollowing the Expo SDK 51 Modernized build.gradle diff gist published by @brentvatne./example/androidand/example/iosfolders removed to solveexpo-doctorissues- Example app updated to use the latest Expo SDK 51 version.
v0.2.5 - 2024-02-21
Support for Expo SDK 50
- The
android/build.gradlefile has been updated to support Expo SDK 50 following the Gradle Migration guide published by Expo. - The
ios/ExpoGooglePlaces.podspecfile has been updated to support Expo SDK 50 following the Upgrading your app steps published by Expo. - The
ios/ExpoGooglePlacesMiscellaneous.swiftfile has been updated so theLatLngandLocationBoundsFilterstructures conform to theAnyArgumentprotocol which looks to be required by the Expo SDK 50.
v0.2.4 - 2023-10-26
Support when also using React Native Maps library
- If youβre using the React Native Maps library you must update the Expo Google Places library to the version >= 0.2.4 since the versions <= 0.2.3 use an application meta-data with
com.google.android.geo.API_KEYkey to initialize the Expo Google Places library. This key is also used by the React Native Maps library to initialize the Google Maps library and this causes a conflict between the two libraries due to overwrites. - If you still want to share the same API key for both libraries you must restrict it to the Maps SDK for Android and Places API. This is required for the Expo Google Places with a version <= 0.2.3.
v0.2.3 - 2023-10-20
Support for Expo SDK 49
- The
android/build.gradlefile has been updated to support Expo SDK 49 following the Gradle Migration guide published by Expo. (#8 by @fukuli053)