java - Google Map V2 shows blank screen when downloded from google play store -
i made simple maps project, works great when installing form eclipse onto tablet, however, when uploded google play store, turns out when download store, map blank, tried , realized true
this how app looks when installing form eclipse device
and how looks when downloded device google play store.
this manifest
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.zivkesten.find_a_place" android:versioncode="5" android:versionname="1.4" > <uses-sdk android:minsdkversion="11" android:targetsdkversion="19" /> <uses-permission android:name="android.permission.internet" /> <uses-permission android:name="android.permission.access_network_state" /> <uses-permission android:name="android.permission.write_external_storage" /> <uses-permission android:name="android.permission.access_fine_location" /> <uses-permission android:name="android.permission.access_coarse_location" /> <uses-permission android:name="com.google.android.providers.gsf.permission.read_gservices" /> <uses-permission android:name="android.permission.battery_stats" /> <application android:allowbackup="true" android:icon="@drawable/ic_launcher" android:logo="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/apptheme" > <meta-data android:name="com.google.android.maps.v2.api_key" android:value="my_key" /> <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" /> <activity android:name="com.zivkesten.find_a_place.view.activities.mainactivity" android:label="@string/whatsoround" android:theme="@style/splashscreentheme" android:logo="@drawable/ic_launcher" android:icon="@drawable/ic_launcher" > <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> </activity> > </application>
anyone has idea why happening? updated in eclipse latest possible.
did add sha-1 fingerprint key signed app with? when in debug mode, uses different key 1 publish with, both need authorized on api console work. had same issue , solved me.
Comments
Post a Comment