Недавно я загрузил android магазин приложений для смартфонов. Хотя мой первоначальный план состоял в том, чтобы выпустить приложение для износа, мое приложение для износа было отклонено Google, и я снял флажок «Распространить приложение на Android Wear» из-за некоторых обязательств. Теперь я хочу снова выпустить приложение для износа, но не могу включить эту опцию «Распространить приложение на Android Wear». Я загрузил APK-файл модуля износа. Это мой манифест модулей износа: -
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.BODY_SENSORS" />
<uses-feature android:name="android.hardware.type.watch" />
<application
android:name=".util.TribeWearApplication"
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/SplashTheme">
<!--specifies whether this watch app depends on phone app or not-->
<meta-data
android:name="com.google.android.wearable.standalone"
android:value="true" />
<activity
android:name="SplashActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".ui.activity.WorkoutActivity"
android:label="@string/app_name"
android:launchMode="singleInstance" />
<activity
android:name=".ui.activity.activitystpped.WorkputStoppedFromPhoneactivity"
android:label="@string/app_name"
android:launchMode="singleTask"
android:theme="@style/WorkoutTheme" />
<service
android:name=".service.PhoneCommunicatorService"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="com.google.android.gms.wearable.MESSAGE_RECEIVED" />
<data
android:host="*"
android:pathPrefix="/"
android:scheme="wear" />
</intent-filter>
</service>
</application>