diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2692523bf..0ff061983 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,13 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
### Fixed
+## [7.3.1] 2021-05-12
+
+### Fixed
+
+- (Android) Pin the firebase-messaging dependency to `21.1.0`.
+- (Android) Fix: android missing channelId warning should now show [#1995](https://github.com/zo0r/react-native-push-notification/pull/1995).
+
## [7.3.0] 2021-05-12
### Features
@@ -388,3 +395,14 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
[unreleased]: https://github.com/zo0r/react-native-push-notification/compare/v3.1.2...HEAD
[3.1.2]: https://github.com/zo0r/react-native-push-notification/compare/v3.1.1...v3.1.2
[3.1.1]: https://github.com/zo0r/react-native-push-notification/compare/...v3.1.1
+
+
+## Supported React Native Versions
+
+| Component Version | RN Versions | README |
+| ----------------- | -------------------- | ---------------------------------------------------------------------------------------------------------------------- |
+| **1.0.7** | **<= 0.27** | [Open](https://github.com/zo0r/react-native-push-notification/blob/f42723817f1687e0da23e6753eb8a9f0385b6ac5/README.md) |
+| **1.0.8** | **0.28** | [Open](https://github.com/zo0r/react-native-push-notification/blob/2eafd1961273ca6a82ad4dd6514fbf1d1a829089/README.md) |
+| **2.0.1** | **0.29** | [Open](https://github.com/zo0r/react-native-push-notification/blob/c7ab7cd84ea19e42047379aefaf568bb16a81936/README.md) |
+| **2.0.2** | **0.30, 0.31, 0.32** | [Open](https://github.com/zo0r/react-native-push-notification/blob/a0f7d44e904ba0b92933518e5bf6b444f1c90abb/README.md) |
+| **>= 2.1.0** | **>= 0.33** | [Open](https://github.com/zo0r/react-native-push-notification/blob/a359e5c00954aa324136eaa9808333d6ca246171/README.md) |
diff --git a/README.md b/README.md
index a9ba836fc..90f61db99 100644
--- a/README.md
+++ b/README.md
@@ -14,19 +14,7 @@ Check out for changes and migration in the CHANGELOG:
# Supporting the project
-Maintaining this project takes time. To help allocate time, you can Buy Me a Coffee :wink:
-
-
-
-## Supported React Native Versions
-
-| Component Version | RN Versions | README |
-| ----------------- | -------------------- | ---------------------------------------------------------------------------------------------------------------------- |
-| **1.0.7** | **<= 0.27** | [Open](https://github.com/zo0r/react-native-push-notification/blob/f42723817f1687e0da23e6753eb8a9f0385b6ac5/README.md) |
-| **1.0.8** | **0.28** | [Open](https://github.com/zo0r/react-native-push-notification/blob/2eafd1961273ca6a82ad4dd6514fbf1d1a829089/README.md) |
-| **2.0.1** | **0.29** | [Open](https://github.com/zo0r/react-native-push-notification/blob/c7ab7cd84ea19e42047379aefaf568bb16a81936/README.md) |
-| **2.0.2** | **0.30, 0.31, 0.32** | [Open](https://github.com/zo0r/react-native-push-notification/blob/a0f7d44e904ba0b92933518e5bf6b444f1c90abb/README.md) |
-| **>= 2.1.0** | **>= 0.33** | [Open](https://github.com/zo0r/react-native-push-notification/blob/a359e5c00954aa324136eaa9808333d6ca246171/README.md) |
+Maintainers are welcome ! Feel free to contact me :wink:
## Changelog
@@ -67,7 +55,7 @@ In your `android/build.gradle`
```gradle
ext {
googlePlayServicesVersion = "" // default: "+"
- firebaseMessagingVersion = "" // default: "+"
+ firebaseMessagingVersion = "" // default: "21.1.0"
// Other settings
compileSdkVersion = // default: 23
diff --git a/android/build.gradle b/android/build.gradle
index 040255816..7bfeaed0b 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -55,5 +55,5 @@ dependencies {
implementation "$appCompatLibName:$supportLibVersion"
implementation 'com.facebook.react:react-native:+'
implementation 'me.leolin:ShortcutBadger:1.1.22@aar'
- implementation "com.google.firebase:firebase-messaging:${safeExtGet('firebaseMessagingVersion', '+')}"
+ implementation "com.google.firebase:firebase-messaging:${safeExtGet('firebaseMessagingVersion', '21.1.0')}"
}
diff --git a/package.json b/package.json
index baec71ba8..8c2a36017 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "react-native-push-notification",
- "version": "7.3.0",
+ "version": "7.3.1",
"description": "React Native Local and Remote Notifications",
"main": "index.js",
"scripts": {