Note that there are some explanatory texts on larger screens.

plurals
  1. POAndroid Google Maps API key?
    primarykey
    data
    text
    <p>Ive been messing around with an open source application named "<a href="http://code.google.com/p/open-gpstracker/" rel="nofollow">Open GPS Tracker</a>" and I've been having trouble getting google maps to work on it. I have acquired my own API key based off my package name and SHA1 fingerprint, but I cannot get the map to show anything but a grid. The manifest permissions and the map.xml file is below. Any suggestions would be greatly appreciated.</p> <pre><code>&lt;manifest xmlns:android="http://schemas.android.com/apk/res/android" package="nl.sogeti.android.gpstracker" android:installLocation="auto" android:versionCode="85" android:versionName="0.5" &gt; &lt;uses-sdk android:minSdkVersion="7" android:targetSdkVersion="16" /&gt; &lt;supports-screens android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" /&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.ACCESS_NETWORK_STATE" /&gt; &lt;uses-permission android:name="android.permission.INTERNET" /&gt; &lt;uses-permission android:name="android.permission.WAKE_LOCK" /&gt; &lt;uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /&gt; &lt;uses-permission android:name="android.permission.READ_PHONE_STATE" /&gt; &lt;uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /&gt; &lt;uses-feature android:name="android.hardware.location.gps" android:required="true" /&gt; &lt;application android:allowClearUserData="true" android:description="@string/app_name" android:hardwareAccelerated="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" &gt; &lt;uses-library android:name="com.google.android.maps" /&gt; </code></pre> <p>} MAPS.XML</p> <pre><code>&lt;RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/mapScreen" &gt; &lt;com.google.android.maps.MapView android:id="@+id/myMapView" android:layout_width="fill_parent" android:layout_height="fill_parent" android:enabled="true" android:clickable="true" android:apiKey="my key is here" android:visibility="visible" /&gt; &lt;!-- Release : 0bmdf4-ggC50QWBY1OgGRutQ9bIboIy11OczZbw --&gt; &lt;!-- Emulator : 0bmdf4-ggC50QJGdjml6Turq0NJdMhKFQNdhkYA --&gt; &lt;org.osmdroid.views.MapView android:id="@+id/myOsmMapView" android:layout_width="fill_parent" android:layout_height="fill_parent" renderer="CLOUDMADESTANDARDTILES" cloudmadeStyle="1" android:visibility="gone" /&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

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