0
0

More than 3 years have passed since last update.

[Kotlin]Firebase InAppMessagingの実装

Posted at

 はじめに

  • 実装なしで画面表示時にダイアログを出せます

画面

ダイアログが出た際の表示

File.jpg

実装

applicationレベルのgradle

build.gradle(app)

dependencies {
   〜

    // core
    implementation "com.google.firebase:firebase-core:17.4.0"
    // InAppMessaging
    implementation 'com.google.firebase:firebase-inappmessaging-display:19.0.6'
}

Activityの実装なし

 おわりに

別アプリでは問題なく、初回インストール直後の起動で問題無く表示されましたが、
今回のサンプルではなぜかインストールして直後では表示されず、
インストール→アプリキャッシュクリア→再度アプリ表示にてダイアログが表示されました。
原因わかる方ご指摘い頂けますと幸いです。

ソースコードはこちら

0
0
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
0
0