LoginSignup
9
1

More than 5 years have passed since last update.

Reproでプッシュ通知を受け取る際にSmall Iconが表示されない場合の対処方法

Posted at

概要

Reproでプッシュ通知を受け取る際に、NotificationCompat.BuildersetSmallIconでiconのリソースを指定していても通知に表示されない場合の対処方法について。

対処方法

AndroidManifestのapplicationタグに以下のようなmeta-dataを追加します。

<meta-data
    android:name="io.repro.android.PushNotification.SmallIcon"
    android:resource="@drawable/YOUR_ICON_ID">
</meta-data>

これで表示されるはずです。

ドキュメントはちゃんと読もう

30分ぐらい悩んでたんですが、Reproのドキュメントを読んだらあっさり解決しました。ドキュメントはちゃんと読もう・・。

参考

9
1
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
9
1