Play商店说app与手机测试不兼容

时间:2017-03-13 18:54:30

标签: java android google-play

Play商店说我的应用程序与我拥有的所有设备都不兼容,但也包括我测试过的手机。下面是我的清单文件。我在运行Nougat的Nexus 5X上进行了测试,但Play商店说应用程序与我的手机不兼容。非常感谢!

    <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.health4everyone.thejdeep.healthpal">
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.WAKE_LOCK" />

    <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.google.android.geo.API_KEY"
            android:value="#####" />

        <activity android:name="com.heath4everyone.thejdeep.healthpal.MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <activity android:name="com.heath4everyone.thejdeep.healthpal.Home"></activity>

        <activity android:name="com.heath4everyone.thejdeep.healthpal.Hospitals"></activity>

        <activity
            android:name="com.heath4everyone.thejdeep.healthpal.Restaurants"
            android:label="Map">
        </activity>

        <activity android:name="com.heath4everyone.thejdeep.healthpal.ActivityTracker"></activity>

        <activity   android:name=".Settings" android:label="@string/app_name">
            <intent-filter>
                <action android:name="com.health4everyone.thejdeep.healthpal.Settings" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>

        <activity
            android:name="com.heath4everyone.thejdeep.healthpal.SearchFoodByRestaurant"
            android:label="Search Restaurant">
        </activity>

    </application>

</manifest>

编辑:删除了API密钥:)

0 个答案:

没有答案