2016-07-07 214 views
0

我已将我的应用程序上传到Google Play,并且我看到“您的设备与此版本不兼容”消息。我见过很多其他类似的问题,但我的案例似乎是独一无二的:我在与我用于开发的设备上获得此信息。无法在Play商店中安装测试版应用程序用于开发

这里是我的清单文件:

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="io.mindworks.foodforyou"> 

    <!-- To auto-complete the email text field in the login form with the user's emails --> 
    <uses-permission android:name="android.permission.GET_ACCOUNTS" android:required="false" /> 
    <uses-permission android:name="android.permission.READ_PROFILE" android:required="false" /> 
    <uses-permission android:name="android.permission.READ_CONTACTS" android:required="false" /> 
    <uses-permission android:name="android.permission.INTERNET" /> 
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" android:required="false" /> 
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" android:required="false" /> 
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" android:required="false" /> 

    <uses-feature android:glEsVersion="0x00020000" android:required="false"/> 

    <application 
     android:allowBackup="true" 
     android:icon="@mipmap/ic_launcher" 
     android:label="@string/app_name" 
     android:supportsRtl="true" 
     android:theme="@style/AppTheme"> 
     <meta-data 
      android:name="com.facebook.sdk.ApplicationId" 
      android:value="@string/facebook_app_id" /> 
     <meta-data 
      android:name="com.google.android.gms.version" 
      android:value="@integer/google_play_services_version" /> 

     <activity 
      android:name=".ui.LoginActivity" 
      android:label="@string/title_activity_login" /> 
     <activity 
      android:name="com.facebook.FacebookActivity" 
      android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation" 
      android:label="@string/app_name" 
      android:theme="@android:style/Theme.Translucent.NoTitleBar" /> 
     <activity 
      android:name=".ui.SplashActivity" 
      android:configChanges="keyboardHidden|screenSize" 
      android:screenOrientation="portrait" 
      android:label="@string/title_activity_splash" 
      android:theme="@style/FullscreenTheme"> 
      <intent-filter> 
       <action android:name="android.intent.action.MAIN" /> 
       <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 
     </activity> 
     <activity 
      android:name=".ui.MainActivity" 
      android:label="@string/title_activity_main" 
      android:theme="@style/AppTheme.NoActionBar" 
      android:configChanges="orientation|screenSize"/> 

     <meta-data 
      android:name="com.google.android.geo.API_KEY" 
      android:value="xxxxxxxxxxxx_xxxxxxxxxx-xxxxxxxxxxx"/> 
    </application> 

</manifest> 

我在做什么错?

更新

对于那些谁说我不能为我自己的应用程序Beta测试: Tester

这里是错误消息: ErrorMessage

+0

你在其他设备获取同样的信息? –

+0

是的,有几个我试过... –

回答

-1

我已经找到了答案在这里: Android app is supported by 0 devices

有时这样做的原因是,你有 引用的第三方库。如果你能找到它是哪一个,并且你可以删除它,你可以解决这个问题。

在可能情况下,我不得不删除:

org.apache.commons.io:2.4

伊沃·斯托亚诺夫

-1

你想能够在开发者帐户中使用该应用程序意味着您将无法使用相同帐户在该设备上安装测试版应用程序。

开发人员应该不会像设备上安装测试版应用程序那样。

尝试使用不同的帐户。

检查setup Alpha/Beta test

+0

这绝对不是真的。我之前已经使用过其他应用程序。 –

+0

尝试这样做一次。 –

+0

我确实设置了一个beta测试。请引用部分说明我无法使用相同的设备/帐户进行beta测试。 –

-1

您不能使用Beta测试的开发者帐户相同的帐户。 Alpha测试允许使用相同的帐户使用情况,但使用相同的开发者帐户进行Beta测试本身违反了Beta测试的定义,因此,您不允许使用与开发者相同的帐户测试您的应用。

+0

我不这么认为。我真的不明白为什么我不能成为我自己的应用程序的测试版测试。请引用Google Developer的声明。 –

相关问题