2

出于某种原因,我可以编译我的 android 应用程序并将 .APK 文件通过电子邮件发送给自己并安装它。因此,我将我的应用程序提交到了 Google Play 市场。现在,出于某种原因,Google Play 商店显示“此项目与您的设备不兼容。”。如果我实际上可以通过 .APK 安装到我的手机,为什么会这样说?我必须怎么做才能告诉 Google Play 该应用确实与我的设备兼容?

我的一些朋友通过 google play store 安装我的应用程序没有问题。但其他一些人也有和我一样的问题,他们可以通过我的 .APK 文件安装,但不能通过 google play 商店安装。

我做错什么了?

清单文件如下:

<?xml version="1.0" encoding="utf-8"?>

<uses-sdk
    android:minSdkVersion="9"
    android:targetSdkVersion="17" />

<uses-feature
    android:name="android.hardware.sip.voip"
    android:required="true" />
<uses-feature
    android:name="android.hardware.wifi"
    android:required="true" />
<uses-feature
    android:name="android.hardware.microphone"
    android:required="true" />

<uses-permission android:name="android.permission.USE_SIP" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />

<application
    android:allowBackup="true"
    android:icon="@drawable/icon"
    android:label="@string/app_name"
    android:screenOrientation="portrait"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.hello20.controller.MainActivity"
        android:label="@string/app_name"
        android:launchMode="singleInstance" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name="com.hello20.controller.EventListing"
        android:label="@string/title_activity_event_listing"
        android:screenOrientation="portrait" >
    </activity>
    <activity
        android:name="com.hello20.controller.Conference"
        android:label="@string/title_activity_conference"
        android:screenOrientation="portrait" >
    </activity>
    <activity
        android:name="com.hello20.controller.ConferenceSignin"
        android:label="@string/title_activity_conference_signin"
        android:screenOrientation="portrait" >
    </activity>
    <activity
        android:name="com.hello20.controller.Etiquette"
        android:label="@string/title_activity_etiquette"
        android:screenOrientation="portrait" >
    </activity>
    <activity
        android:name="com.hello20.controller.MakeCall"
        android:label="@string/title_activity_make_call"
        android:screenOrientation="portrait" >
    </activity>

    <receiver
        android:name="com.hello20.library.IncomingCallReceiver"
        android:label="Call Receiver" >
    </receiver>

    <activity
        android:name="com.hello20.controller.CallScreen"
        android:label="@string/title_activity_call_screen"
        android:screenOrientation="portrait" >
    </activity>
    <activity
        android:name="com.hello20.controller.CallHistory"
        android:label="@string/title_activity_call_history" >
    </activity>
    <activity
        android:name="com.hello20.controller.WebViewer"
        android:label="@string/title_activity_web_viewer" >
    </activity>
</application>

更新

这是应用程序的链接:

https://play.google.com/store/apps/details?id=com.hello20&feature=search_result#?t=W251bGwsMSwyLDEsImNvbS5oZWxsbzIwIl0

正如你所看到的,没有任何东西被启用......我们至少不适合我。我的帐户有四台设备可用。它们如下:

  1. 银河 S3:4.2.2
  2. Galaxy Tab 10.1:4.1.2(我认为)
  3. Galaxy Tab 7 第一个版本:4.2.2
  4. Galaxy S2 LTE:4.xx(不知道,因为它是我的妻子)

补充笔记

当我们从清单文件中删除所有uses-feature元素,编译并上传时,所有设备都支持该应用程序。如果即使其中一个uses-feature元素在清单文件中,则任何设备都不支持它。那么uses-feature在清单文件中使用元素的正确方法是什么?

4

2 回答 2

3
android.hardware.sip.voip

此处未列出:http: //developer.android.com/guide/topics/manifest/uses-feature-element.html 因此,您似乎声明 hoyr 应用程序需要不存在的硬件功能。

尝试使用

android.software.sip.voip

反而

于 2013-07-08T20:25:03.773 回答
-1

我们最终删除了所有uses-feature节点,这解决了问题。

于 2013-07-08T21:34:35.940 回答