android - This app is incompatible with your device in play store(Galaxy S5, Only READ_PHONE_STATE Permission) -
i developed simple widget "sim info widget", shows basic information sim state, serial number, operator name etc.
for of information need instance of telephonymanager , "android.permission.read_phone_state" permission.
when directly run app in phone(samsung galaxy s5/g900i) through eclipse, got installed , running perfectly.(screenshot attached)
but when published in google play, says app incompatible device
the manifest is
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.ragini.siminfowidget" android:versioncode="1" android:versionname="1.0" > <uses-sdk android:minsdkversion="9" android:targetsdkversion="21" /> <uses-permission android:name="android.permission.read_phone_state"/> <application android:allowbackup="true" android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@style/apptheme" > <receiver android:label="detials of sim" android:name="mywidgetprovider" > <intent-filter > <action android:name="android.appwidget.action.appwidget_update" /> </intent-filter> <meta-data android:name="android.appwidget.provider" android:resource="@xml/widget_basics" /> </receiver> </application> </manifest>
can body please suggest me why happening, because phone supports cellular activities calling, sms etc, still problem occurs.
screenshot
Comments
Post a Comment