简体   繁体   English

我们的 Wear OS 应用未在 Google Play 中列出

[英]Our Wear OS app not listed on the Google Play

So we have an issue with our Wear OS app.所以我们的 Wear OS 应用程序存在问题。 Recently we got an email from Google that our app is removed from the Play Store because of quote:最近我们收到一封来自 Google 的电子邮件,称我们的应用因引用而从 Play 商店中删除:

your app is not compatible with Watch/Wear OS devices due to a conflict in your app's manifest with the following features: android.hardware.location.network , android.hardware.screen.landscape , and android.hardware.screen.portrait .由于您的应用清单与以下功能发生冲突,您的应用与 Watch/Wear OS 设备不兼容: android.hardware.location.networkandroid.hardware.screen.landscapeandroid.hardware.screen.portrait

But there is no uses-feature related to landscape or portrait in our AndroidManifest, neither in Merged Manifest.但是在我们的 AndroidManifest 中没有与横向纵向相关的uses-feature ,在 Merged Manifest 中也没有。

Here is what we have in our AndroidManifest :这是我们在AndroidManifest中的内容:

  <uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />

<uses-feature android:name="android.hardware.type.watch" />
<uses-feature
        android:name="android.hardware.location.network"
        android:required="false" />
<uses-feature
        android:name="android.hardware.location"
        android:required="false" />

Any help is more than welcome.任何帮助都非常受欢迎。 Thanks谢谢

I don't know the definitive answer, but are you sure you need the two location uses-feature manifest entries?我不知道确切的答案,但是您确定需要两个位置使用功能清单条目吗?

See https://stackoverflow.com/a/39603347/1542667https://stackoverflow.com/a/39603347/1542667

Is there some device you want to filter out, rather than assuming most Wear OS devices will have some form of location available (GPS or network).您是否要过滤掉某些设备,而不是假设大多数 Wear OS 设备都有某种形式的可用位置(GPS 或网络)。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 由于屏幕截图,Google Play 不断拒绝我们的 Wear os 应用 - Google play keeps rejecting our wear os app due to screenshots 应用未在Google Play搜索中列出 - App is not listed in Google Play Search Google Play 拒绝我的 Wear os 配套应用,在手机上启动时崩溃 - Google Play reject my wear os companion app with crashed when launch on phone 如何在手表上远程从手机打开 Google Play(Wear OS) - How to open Google Play from the phone remotely on the watch (Wear OS) 该应用未在平板电脑设备的Google Play商店中列出 - App is not listed in Google play store for tablet devices Play 控制台中的 Wear OS 应用程序 - 目标 API 错误 - Wear OS app in Play Console - target API error 我的应用程序显示为开发人员在 Google Play 上针对 Wear OS 进行了增强。但我已经为手机开发了它。出了什么问题? - My app shows as enhanced by developer for wear OS on google play.But I've developed it for Phones.What went wrong? 无法在Google Play开发者控制台中的Android Wear上分发应用 - Unable to distribute app on Android Wear in Google Play Developer console Android Wear 2独立应用程式DataLayerApi和Google Play发行 - Android Wear 2 standalone app DataLayerApi and Google Play distribution Wear OS - 独立穿戴应用架构 - Wear OS - Standalone wear app architecture
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM