我在android Place api中启用了结算功能。现在,我限制“ Android”的密钥。有限制的地方api的请求限制为每天2400个请求。 不受限制,这很好。如何通过应用程序限制获得更多请求限制?
位置请求如下。
List<Place.Field> alList = new ArrayList<>();
alList.add(Place.Field.ADDRESS);
alList.add(Place.Field.LAT_LNG);
alList.add(Place.Field.NAME);
alList.add(Place.Field.ID);
Autocomplete.IntentBuilder autoCompleteIntentBuilder = new Autocomplete.IntentBuilder(AutocompleteActivityMode.FULLSCREEN, alList);
if (!TextUtils.isEmpty(strQuery)) {
autoCompleteIntentBuilder.setInitialQuery(strQuery);
autoCompleteIntentBuilder.setCountry("IN");
}
startActivityForResult(autoCompleteIntentBuilder.build(mActivity), LOCATION_SEARCH_REQUEST);
渐变依赖为
implementation 'com.google.android.libraries.places:places:2.0.0'