Internal testing release for android Wear App

272 Views Asked by At

I'm facing an issue while trying to upload an internal testing release for an Android Wear App on Google Play Console

I get the following error: You can't rollout this release because it doesn't allow any existing users to upgrade to the newly added app bundles.

Error Image

I've tried uploading both modules (app and wear app) while having the same version code and I've tried uploading them using different version codes too.

Wear Module Manafist

<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: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="false" />

App Module Manafist

<uses-permission android:name="${applicationId}.permission.JPUSH_MESSAGE" />

<application
    android:name=".App"
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme"
    tools:ignore="GoogleAppIndexingWarning">
    <service
        android:name=".service.AppIntentService"
        android:exported="false"></service>

Without <uses-feature android:name="android.hardware.type.watch" /> in the app module, then if I added this in the app module the build works fine but the app APK installed on the watch

Does anyone have the same issue? any suggestions?

0

There are 0 best solutions below