Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>It could be an issue with the Manifest. The following works for me, specifically <code>permission.MAPS_RECEIVE</code> solved a similar issue I had: zoom buttons and myLocation displayed, but map had no tiles...</p> <pre><code>&lt;manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.discos2.example" android:versionCode="1" android:versionName="1.0" &gt; &lt;uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17" /&gt; &lt;permission android:name="com.discos2.example.permission.MAPS_RECEIVE" android:protectionLevel="signature" /&gt; &lt;uses-permission android:name="com.discos2.example.permission.MAPS_RECEIVE" /&gt; &lt;uses-permission android:name="android.permission.INTERNET" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /&gt; &lt;uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /&gt; &lt;uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" /&gt; &lt;uses-feature android:name="android.hardware.location" android:required="false" /&gt; &lt;uses-feature android:name="android.hardware.location.network" android:required="false" /&gt; &lt;uses-feature android:name="android.hardware.location.gps" /&gt; &lt;uses-feature android:name="android.hardware.wifi" android:required="false" /&gt; &lt;uses-feature android:glEsVersion="0x00020000" android:required="true" /&gt; &lt;application android:hardwareAccelerated="true"&gt; &lt;meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="__NEW_GOOGLE_MAPS_V2_KEY_GOES_HERE__" /&gt; &lt;activity android:name=".ui.activities.MainActivity" &gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.MAIN" /&gt; &lt;category android:name="android.intent.category.LAUNCHER" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;/application&gt; &lt;/manifest&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload