Hi All
I'm working on a project that takes in an address and gets the latitude and longitude of the address. I haven't done anything complicated yet. I just created the project and added one line
private Geocoder g = new Geocoder(this);
When I compile the code and execute it, I get the following error on the emulator, "The Application Testing Geocoder has stopped unexpectedly. Please try again."
I have also added the two lines to the AndroidManifest.xml as follows, within the <application> </application> tags.
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
Can someone figure out what's wrong? Any help is greatly appreciated. Thank you.


