Skip to content Skip to sidebar Skip to footer

Can't Get Google Maps To Show Behind Google Places In My App (only Grid)

I have this code from the tutorial Android Working with Google Places and Maps, and I want to change it, because I need it to work with google maps v2. The problem is that instead

Solution 1:

Check Your Manifest

Is Permission and Uses Library added like follow

<uses-permission android:name="android.permission.INTERNET"/> in manifest tag and

<uses-library android:name="com.google.android.maps" /> in application tag

And Double check is your device able to connect to Internet.

Post a Comment for "Can't Get Google Maps To Show Behind Google Places In My App (only Grid)"