Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
## 0.9.0+4

- Update a dependency to the latest release.

## 0.9.0+3

- Update a dependency to the latest release.
- **FIX**: exclude deprecated `firebase-iid` to avoid duplicate classes with firebase_messaging.

## 0.9.0+2

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ android {
dependencies {
api firebaseCoreProject
implementation platform("com.google.firebase:firebase-bom:${getRootProjectExtOrCoreProperty("FirebaseSDKVersion", firebaseCoreProject)}")
implementation 'com.google.firebase:firebase-inappmessaging-display'
implementation('com.google.firebase:firebase-inappmessaging-display') {
// IID is deprecated and clashes with firebase-messaging ≥ 24.
exclude group: 'com.google.firebase', module: 'firebase-iid'
}
implementation 'androidx.annotation:annotation:1.7.0'
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: firebase_in_app_messaging
description: Flutter plugin for Firebase In-App Messaging.
version: 0.9.0+4
version: 0.9.0+3
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @alisidhu, is there any reason for this version update?

homepage: https://firebase.google.com/docs/in-app-messaging
repository: https://github.com/firebase/flutterfire/tree/main/packages/firebase_in_app_messaging
topics:
Expand Down
Loading