This app is incompatible with your device in play store(Galaxy S5, Only READ_PHONE_STATE Permission)

无人久伴 提交于 2019-12-13 02:05:49

问题


I just developed a simple widget "SIM Info Widget", which shows very basic information like SIM State, Serial Number, Operator Name etc.

For any of the information just I need an Instance of TelephonyManager and "android.permission.READ_PHONE_STATE" permission.

When I directly run the app in my Phone(Samsung Galaxy S5/G900I) through Eclipse, it got installed and running perfectly.(Screenshot is attached)

But when I published it in Google Play, It says This app is incompatible with your 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 any body please suggest me why it is happening, Because my phone supports Cellular Activities like Calling, SMS etc, Still the problem occurs.

Screenshot

来源:https://stackoverflow.com/questions/29320728/this-app-is-incompatible-with-your-device-in-play-storegalaxy-s5-only-read-pho

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!