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.kt
file has been updated to fix the issue reported in the #16 issue by @thatAwesomeKK where theorigin
,locationBias
andlocationRestriction
properties were not being cast as expected. - The
ios/ExpoGooglePlacesMiscellaneous.swift
file has been updated to fix the issue reported in the #17 issue by @maxkudla where theorigin
,locationBias
andlocationRestriction
properties 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.gradle
following the Expo SDK 51 Modernized build.gradle diff gist published by @brentvatne./example/android
and/example/ios
folders removed to solveexpo-doctor
issues- 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.gradle
file has been updated to support Expo SDK 50 following the Gradle Migration guide published by Expo. - The
ios/ExpoGooglePlaces.podspec
file has been updated to support Expo SDK 50 following the Upgrading your app steps published by Expo. - The
ios/ExpoGooglePlacesMiscellaneous.swift
file has been updated so theLatLng
andLocationBoundsFilter
structures conform to theAnyArgument
protocol 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_KEY
key 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.gradle
file has been updated to support Expo SDK 49 following the Gradle Migration guide published by Expo. (#8 by @fukuli053)