簡體   English   中英

我無法通過 Play 商店安裝我的上傳應用,但我的設備已在支持的設備中注冊

[英]I can not install my upload app via play store but my device is registered in supported devices

我剛剛將我的第一個應用程序上傳到 WearOs 的 Play 商店,但是當我嘗試將它安裝到我的三星 Galaxy Watch 4 上時,它說我沒有任何符合條件的設備。

來自游戲控制台的圖像

來自Play商店的圖像

這是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>

為什么我無法在我的 Wear OS 設備中安裝? 我的應用程序有問題嗎?

問題出在你的手機上(不是你的手表)

你的小米 Poco X3

您還沒有包括這些設備。

在此處輸入圖像描述

單擊“管理設備”並包括它們。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM