简体   繁体   中英

0 Supported Devices on Google play

Supported Devices 0 on google play store, Here is my Manifest file. Please help me with this guys. There are lot of questions about this but still i couldn't find a solution for this. I think my case is different.

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

<uses-feature
    android:name="android.hardware.camera2"
    android:required="true" />

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

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity
        android:name=".NameActivity"
        android:label="@string/app_name"
        android:theme="@style/AppTheme">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

    <meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />

    <activity
        android:name=".MainNavigation"
        android:label="@string/title_activity_main_navigation"
        android:theme="@style/AppTheme" />
    <activity
        android:name=".News"
        android:label="@string/title_activity_news"
        android:theme="@style/AppTheme" />
    <activity
        android:name=".Settings"
        android:label="@string/title_activity_settings"
        android:parentActivityName=".News">
        <meta-data
            android:name="android.support.PARENT_ACTIVITY"
            android:value="com.chathu.ranga.network.News" />
    </activity>
    <activity
        android:name=".ShareActivity"
        android:label="@string/title_activity_share"
        android:theme="@style/AppTheme" />
    <activity
        android:name=".SendSMS"
        android:label="@string/title_activity_send_sms"
        android:theme="@style/AppTheme"></activity>
</application>

Just change this

<uses-feature
android:name="android.hardware.camera2"
android:required="true" />

to the one below

<uses-feature
android:name="android.hardware.camera2"
android:required="false" />

This might help you solve your problem

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM