Distributed android app not available on any devices

馋奶兔 提交于 2019-12-13 04:27:20

问题


I recently distributed my first app to the android play store. In the developers console it shows that 6162 devices are supported and none are excluded, also If I copy the .apk to any of my devices It runs perfectly fine. But when I open the app in play.google.com It says that none of my devices are supported so I can't install it, although in the developers console all my devices are supported. I have no idea at all why this problem is occurring so any hint or tip would be appreciated.

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.luttikdevelopment.vegimmanuel"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-permission android:name="android.permission.INTERNET" />

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="19" />

    <application
        android:name="com.luttikdevelopment.vegimmanuel.VEG_Immanuel"
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >

        <activity
            android:name="com.luttikdevelopment.vegimmanuel.Agenda"
            android:label="@string/app_name" >
        </activity>

        <activity
            android:name="com.luttikdevelopment.vegimmanuel.Login"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <activity
            android:name="com.luttikdevelopment.vegimmanuel.AgendaItemView"
            android:label="@string/title_activity_agenda_item_view" >
        </activity>

        <activity
            android:name="com.luttikdevelopment.vegimmanuel.AgendaSettings"
            android:label="Instellingen" >
        </activity>
    </application>

</manifest>

来源:https://stackoverflow.com/questions/24232457/distributed-android-app-not-available-on-any-devices

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