AZX
AZX

Reputation: 572

Watch Face isn't recognised as a standalone app by Google Play store

I am developing a watch face using the Watch Face Format. My watch face consists of a Wear OS bundle (the watch face itself) and an optional companion app for the mobile phone.

I have set my watch face to be a standalone app (following the instructions from the https://developer.android.com/training/wearables/apps/standalone-apps) by setting the com.google.android.wearable.standalone meta data in the manifest.xml:

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@android:style/Theme.DeviceDefault"
        android:hasCode="false">

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

        <property
            android:name="com.google.wear.watchface.format.version"
            android:value="1" />

    </application>

However, for some reason Google Play still thinks that the Wear OS bundle is a non-standalone app (see the "Requires mobile app" message in the screenshot below).

Has anyone experienced a similar issue? Do you guys have any ideas what could be wrong?

enter image description here

Upvotes: 0

Views: 298

Answers (2)

mjs
mjs

Reputation: 65313

This error should go away after you push the app to production.

Upvotes: 0

A P
A P

Reputation: 2548

I had a similar issue with publishing one of my watch faces:

First, add the WearOS form factor, you may be asked to Opt-in to Wear OS and additionally agree to special terms & conditions.

advanced settings

Next, ensure this is set to Wear OS Only

open testing and make a new WearOS release.

If that still didn't solve the problem, and if you have a phone companion app (that goes along with the watch app), please update the post with that app's manifest file.

Upvotes: 0

Related Questions