Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PlacePicker.getPlace() is deprecated

I'm trying to develop an application based on google place API. When I try to use

Place place=PlacePicker.getPlace(data,this);

there is an error showing getPlace() is deprecated. Please suggest a solution. Thanks in advance!

like image 642
Sai Raman Kilambi Avatar asked May 05 '16 08:05

Sai Raman Kilambi


1 Answers

The documentation states

This method is deprecated.
Use getPlace(Context, Intent) instead.

You should find this information in Android Studio as well.

like image 112
tynn Avatar answered Nov 04 '22 01:11

tynn