Android Wear 应用因桥接通知而被拒绝
Android wear app got rejected due to Bridging notification
我最近发布了一个 Android Wear 应用程序,但被拒绝了。我从 Google Play 开发者那里收到以下消息:
The issue is with your bridge notifications, as this notification
is not enhanced. The notification simply contains text but does not
contain anything else that the user can interact with.
最初我只是用文本显示通知。在第一次拒绝后,我对通知实施了两个操作,用户可以通过这些操作与通知进行交互。我重新提交了申请,同样的原因再次被拒
请帮我解决这个问题。
提前致谢。
关闭桥接通知,重新提交playstore的申请。
要禁用桥接通知,请在磨损应用程序 Androidmanifest.xml 文件中使用以下代码。
<meta-data
android:name="com.google.android.wearable.notificationBridgeMode"
android:value="NO_BRIDGING" />
请参考这个linkhttps://developer.android.com/training/wearables/notifications/bridger
我最近发布了一个 Android Wear 应用程序,但被拒绝了。我从 Google Play 开发者那里收到以下消息:
The issue is with your bridge notifications, as this notification is not enhanced. The notification simply contains text but does not contain anything else that the user can interact with.
最初我只是用文本显示通知。在第一次拒绝后,我对通知实施了两个操作,用户可以通过这些操作与通知进行交互。我重新提交了申请,同样的原因再次被拒
请帮我解决这个问题。
提前致谢。
关闭桥接通知,重新提交playstore的申请。 要禁用桥接通知,请在磨损应用程序 Androidmanifest.xml 文件中使用以下代码。
<meta-data
android:name="com.google.android.wearable.notificationBridgeMode"
android:value="NO_BRIDGING" />
请参考这个linkhttps://developer.android.com/training/wearables/notifications/bridger