fluttercommunity / flutter_google_places

Google Places - Google places autocomplete widgets for flutter. No wrapper, use https://pub.dev/packages/google_maps_webservice. Maintainer: @juliansteenbakker
https://pub.dev/packages/flutter_google_places
Other
305 stars 421 forks source link

Auto Complete widget not showing on release apk even with SHA1 registered #172

Open ghost opened 3 years ago

ghost commented 3 years ago

Hi Guys,

So i started using the auto complete widget and it's working well on debug, i can search and select the location and it returns me the expected result, but when i build the apk --release and tried it on my phone, the page just show me a blank screen, both the search and maps are not showing but when i run the debug version of apk on the same device it works, and if i comment the code for the autocomplete widget, then the maps will also show just fine, anyone have any idea what might be wrong?

i haven't uploaded the app to google console yet

(refer to screenshot below)

Expected Result on release: image

What actually happened: Screenshot_20210907-153315

code from the app: Container( color: Colors.transparent, child: TextButton.icon( onPressed: () async { Prediction? p = await PlacesAutocomplete.show( context: context, apiKey: google_geocode_api, mode: Mode.overlay, offset: 0, radius: 10000000, strictbounds: false, region: "sgp", language: "en", types: [], components: [ new Component(Component.country, "sgp") ], onError: (val) => print(val)); if(p != null) displayPrediction(p); }, icon: Icon(Icons.search), label: Text('Search', style: TextStyle(fontSize: 18))), ),

setting on google api console: image

sha1 from signinReport for release: image

any help is appreciated, thanks guys

MatteoAntolini commented 1 year ago

Same problem here