Home > Mobile >  I can not install my upload app via play store but my device is registered in supported devices
I can not install my upload app via play store but my device is registered in supported devices

Time:08-11

I've just uploaded my first app to the play store for WearOs, but when I try to install it on my Samsung galaxy watch 4 it says that I don't have any eligible device.

Image from play console

image from play store

This is the AndroidMaifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.senyor_o.pomodoro">

    <uses-permission android:name="android.permission.WAKE_LOCK" />
    <uses-permission android:name="android.permission.VIBRATE"/>
    <uses-feature android:name="android.hardware.type.watch" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:launchMode="singleTask"
        android:theme="@android:style/Theme.DeviceDefault">
        <uses-library
            android:name="com.google.android.wearable"
            android:required="true" />

        <meta-data
            android:name="com.google.android.wearable.standalone"
            android:value="true" />

        <activity
            android:name="com.senyor_o.pomodoro.MainActivity"
            android:exported="true"
            android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>

Why I can not install in my Wear OS device? Is there any problem in my app?

CodePudding user response:

The problem is in your phone (not your watch)

Your Xiaomi Poco X3

CodePudding user response:

You have not included those devices.

enter image description here

Click "Manage Devices" and include them.

  • Related