diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bc74fdc..5d0794e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,6 @@ * Added COUNTLY_EXCLUDE_PUSHNOTIFICATIONS flag to disable push notifications altogether in order to avoid App Store Connect warnings. * Add "updateSessionInterval" method to sets the interval for the automatic session update calls * flutter_plugin_android_lifecycle updated to latest version (2.0.1) -* Added metric for the device manufacturer in underlying android SDK -* Fixed potential issues by sending all available events before the "end session" request in underlying android SDK * Updated underlying android SDK to 20.11.8 * Underlying iOS SDK version is 20.11.1 diff --git a/android/build.gradle b/android/build.gradle index 1ee4284c..e8dcf8a3 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -3,6 +3,7 @@ version '1.0' buildscript { repositories { + mavenCentral() google() jcenter() } @@ -14,6 +15,7 @@ buildscript { rootProject.allprojects { repositories { + mavenCentral() google() jcenter() } @@ -34,6 +36,6 @@ android { } dependencies { - implementation 'ly.count.android:sdk:20.11.6' + implementation 'ly.count.android:sdk:20.11.8' implementation 'com.google.firebase:firebase-messaging:20.2.1' }