LoginSignup
1
3

More than 5 years have passed since last update.

ReactNativeでAndroidのプッシュ通知アイコンを設定

Posted at

react-native-push-notificationを使ってリモートのプッシュ通知を実装しているのですが、Android側のプッシュ通知アイコンがic_notification.pngではなくic_launcher.pngから読み込まれてしまい困っていました。

ic_notification.pngは全てdrawableではなくmipmap配下にしているのに、、と調べていたところ、

ここのやり方に従って、AndroidManifestに以下を追記することで解決しました。

<meta-data android:name="com.google.firebase.messaging.default_notification_icon" android:resource="@mipmap/ic_notification" />
1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3