Skip to content Skip to sidebar Skip to footer

Android Error: Binary XML File Line #16: Error Inflating Class Fragment When Adding Map Fragment

I'm trying to display map using map api v2. Here is my xml code: Copy

Check the docs under the topic Adding the API Key to your application

https://developers.google.com/maps/documentation/android/start

Edit:

Your also missing

  <permission
    android:name="stringbind.nikolacjenolomacdemo.permission.MAPS_RECEIVE"
    android:protectionLevel="signature"/>

Also use your package name

   <uses-permission android:name="stringbind.nikolacjenolomacdemo.permission.MAPS_RECEIVE" />

Also missing

    <uses-feature
    android:glEsVersion="0x00020000"
    android:required="true"/>

Post a Comment for "Android Error: Binary XML File Line #16: Error Inflating Class Fragment When Adding Map Fragment"