google-developer-training / android-advanced

Solution apps for the apps that students create as they work through the Advanced Android Development training course created by Google Developer Training.
Other
1.14k stars 1.09k forks source link

Bug in code #3

Open abarba1953 opened 5 years ago

abarba1953 commented 5 years ago

IN solution code for: WalkMyAndroidPlaces-Solution there is invalid constant in method MainActivity.java:

private static final int REQUEST_PICK_PLACE = 2;

has to be changed to: private static final int PLACE_PICKER_REQUEST = 1;

othervise when SELECT place button is pressed there is NO place information.

Enjoy.