LG ウォッチ アーバンを使用しています。時計を電話に正常に接続し、時計は gmail、リンクイン、その他のアプリからのすべての通知を表示しています。通知を送信するモバイル アプリケーションを作成しました。ただし、この通知は時計には表示されませんが、携帯電話には通知が届きます。これの理由はわかりません。以下のコードを使用しましたが、
NotificationCompat.Builder notificationBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_adb_black_24dp)
.setContentTitle("Title")
.setContentText("Hello World");
NotificationManagerCompat notificationManager =
NotificationManagerCompat.from(this);
notificationManager.notify(notificationId,notificationBuilder.build());
Companion Android Wear アプリのブロックされたアプリ リストにモバイル アプリが含まれていないことを確認しました。どんな助けでも大歓迎です。