flutter_google_places icon indicating copy to clipboard operation
flutter_google_places copied to clipboard

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

Open ghost opened this issue 4 years ago • 1 comments

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

ghost avatar Sep 07 '21 08:09 ghost

Same problem here

MatteoAntolini avatar Mar 01 '23 21:03 MatteoAntolini