Skip to content

Commit

Permalink
Merge pull request #291 from Countly/android-24.7.5
Browse files Browse the repository at this point in the history
Updated underlying Android SDK version to 24.7.5
  • Loading branch information
turtledreams authored Nov 7, 2024
2 parents 5c5aeda + 8188e3d commit a332b25
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## 24.11.0
* Added further intent redirection vulnerability checks in Android
* Added support for Android 15 (API level 35)
* Added a config flag `setCustomNetworkRequestHeaders` to add custom headers to SDK requests (thanks @sbatezat)
* Automatic view pause/resumes are changed with stop/start for better data consistency.
* Added the config interface `experimental` to group experimental features.
Expand All @@ -16,7 +18,7 @@

* Updated the underlying Firebase Messaging SDK to version 24.0.3

* Updated underlying Android SDK version to 24.7.4
* Updated underlying Android SDK version to 24.7.5
* Updated underlying iOS SDK version to 24.7.7

## 24.7.1
Expand Down
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ android {
if (project.android.hasProperty("namespace")) {
namespace 'ly.count.dart.countly_flutter'
}
compileSdk 34
compileSdk 35

defaultConfig {
minSdkVersion 21
Expand All @@ -38,6 +38,6 @@ android {
}

dependencies {
implementation 'ly.count.android:sdk:24.7.4'
implementation 'ly.count.android:sdk:24.7.5'
implementation 'com.google.firebase:firebase-messaging:24.0.3'
}
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ void main() {
expect(view['segmentation']['cly_pvn'], 'V3_FG');
}
else {
expect(view['segmentation']['cly_v'], Platform.isIOS ? 1 : 0);
expect(view['segmentation']['cly_v'], 1);
if(viewName != 'V1_FG')
{
var currentNumber = int.parse(viewName.split('_')[0].substring(1));
Expand Down Expand Up @@ -100,7 +100,7 @@ void main() {

for (var event in eventFG) {
var eventName = event['key'];
expect(event['segmentation']['cly_v'], Platform.isIOS ? 1 : 0);
expect(event['segmentation']['cly_v'], 1);
if(eventName != 'E1_FG')
{
var currentNumber = int.parse(eventName.split('_')[0].substring(1));
Expand Down
2 changes: 1 addition & 1 deletion scripts/no-push-files/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ android {
}

dependencies {
implementation 'ly.count.android:sdk:24.7.4'
implementation 'ly.count.android:sdk:24.7.5'
}

0 comments on commit a332b25

Please sign in to comment.