No supported device for my Android app in Google Play

北慕城南 提交于 2019-12-13 04:37:25

问题


I am aware this question is asked multiple times on stackoverflow, but the answers given in those posts don't help me out...

This is my manifest

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="be.gps.android"
    android:versionCode="2"
    android:versionName="0.0.2" >

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

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

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/TRL004451"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".StartUpActivity" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".activities.login.LoginActivity"
            android:windowSoftInputMode="stateVisible|adjustResize|stateHidden" >
        </activity>
        <activity
            android:name=".activities.useraccount.resetpassword.RequestResetPasswordActivity"
            android:windowSoftInputMode="stateVisible|adjustResize|stateHidden" >
        </activity>
        <activity
            android:name=".activities.useraccount.resetpassword.VerifyResetPasswordActivity"
            android:windowSoftInputMode="stateVisible|adjustResize|stateHidden" >
        </activity>
        <activity
            android:name=".activities.settings.ServerSettingsActivity"
            android:windowSoftInputMode="stateVisible|adjustResize|stateHidden" >
        </activity>
        <activity
            android:name=".activities.settings.FilterActivity"
            android:windowSoftInputMode="stateVisible|adjustResize|stateHidden" >
        </activity>
        <activity
            android:name=".activities.main.MainActivity"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:windowSoftInputMode="stateVisible|adjustResize|stateHidden" >
        </activity>
        <activity
            android:name=".activities.settings.DatePickerActivity"
            android:windowSoftInputMode="stateVisible|adjustResize|stateHidden" >
        </activity> 
    </application>
</manifest>


回答1:


Seems to be a problem with a library I was using (signalR). This post had the exact same issue : Supported devices 0 on Google play

I just replaced the signalR jars with these https://github.com/eak65/FixedSignalRJar and now I have 9000 supported devices.



来源:https://stackoverflow.com/questions/33262399/no-supported-device-for-my-android-app-in-google-play

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