Skip to content

Commit 2802b72

Browse files
authored
Updated underlying Android SDK version to 23.8.2 (#133)
* Updated underlying Android SDK version to 23.8.2 * Updated SDK version to 23.8.2
1 parent 31c83b0 commit 2802b72

File tree

11 files changed

+20
-10
lines changed

11 files changed

+20
-10
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 23.8.2
2+
* Fixed Android APM bug where automatic foreground, background tracking would track wrong if the SDK was not initialized while the app was not in the foreground
3+
* Updated underlying Android SDK version to 23.8.2
4+
* Underlying iOS SDK version is 23.8.2
5+
6+
## 23.8.2-np
7+
* Fixed Android APM bug where automatic foreground, background tracking would track wrong if the SDK was not initialized while the app was not in the foreground
8+
* Updated underlying Android SDK version to 23.8.2
9+
* Underlying iOS SDK version is 23.8.2
10+
111
## 23.8.1
212
* Added `enrollABOnRCDownload` config method to enroll users to AB tests when downloading Remote Config values
313
* Fixed a bug where enabling consent requirements would enable consents for all features for Android

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ android {
3434
}
3535

3636
dependencies {
37-
implementation 'ly.count.android:sdk:23.8.1'
37+
implementation 'ly.count.android:sdk:23.8.2'
3838
implementation 'com.google.firebase:firebase-messaging:20.2.1'
3939
}

android/src/main/java/ly/count/dart/countly_flutter/CountlyFlutterPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
*/
6565
public class CountlyFlutterPlugin implements MethodCallHandler, FlutterPlugin, ActivityAware, DefaultLifecycleObserver {
6666
private static final String TAG = "CountlyFlutterPlugin";
67-
private final String COUNTLY_FLUTTER_SDK_VERSION_STRING = "23.8.1";
67+
private final String COUNTLY_FLUTTER_SDK_VERSION_STRING = "23.8.2";
6868
private final String COUNTLY_FLUTTER_SDK_NAME = "dart-flutterb-android";
6969
private final String COUNTLY_FLUTTER_SDK_NAME_NO_PUSH = "dart-flutterbnp-android";
7070

example-no-push/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ dependencies {
5959
testImplementation 'junit:junit:4.12'
6060
androidTestImplementation 'com.android.support.test:runner:1.0.2'
6161
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
62-
implementation 'ly.count.android:sdk:23.8.1'
62+
implementation 'ly.count.android:sdk:23.8.2'
6363
}
6464

example/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ dependencies {
5959
testImplementation 'junit:junit:4.12'
6060
androidTestImplementation 'com.android.support.test:runner:1.0.2'
6161
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
62-
implementation 'ly.count.android:sdk:23.8.1'
62+
implementation 'ly.count.android:sdk:23.8.2'
6363
implementation 'com.google.firebase:firebase-messaging:20.2.1'
6464
implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0"))
6565
}

ios/Classes/CountlyFlutterPlugin.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ + (CountlyFeedbackWidget *)createWithDictionary:(NSDictionary *)dictionary;
2323

2424
CLYPushTestMode const CLYPushTestModeProduction = @"CLYPushTestModeProduction";
2525

26-
NSString *const kCountlyFlutterSDKVersion = @"23.8.1";
26+
NSString *const kCountlyFlutterSDKVersion = @"23.8.2";
2727
NSString *const kCountlyFlutterSDKName = @"dart-flutterb-ios";
2828
NSString *const kCountlyFlutterSDKNameNoPush = @"dart-flutterbnp-ios";
2929

ios/countly_flutter.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
Pod::Spec.new do |s|
55
s.name = 'countly_flutter'
6-
s.version = '23.8.1'
6+
s.version = '23.8.2'
77
s.summary = 'Countly is an innovative, real-time, open source mobile analytics platform.'
88
s.homepage = 'https://github.com/Countly/countly-sdk-flutter-bridge'
99
s.social_media_url = 'https://twitter.com/gocountly'

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: countly_flutter
22
description: Countly is an innovative, real-time, open source mobile analytics and push notifications platform.
3-
version: 23.8.1
3+
version: 23.8.2
44
homepage: https://support.count.ly/hc/en-us/articles/360037944212-Flutter
55

66
environment:

scripts/no-push-files/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ android {
3434
}
3535

3636
dependencies {
37-
implementation 'ly.count.android:sdk:23.8.1'
37+
implementation 'ly.count.android:sdk:23.8.2'
3838
}

scripts/no-push-files/countly_flutter_np.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
Pod::Spec.new do |s|
55
s.name = 'countly_flutter_np'
6-
s.version = '23.8.1'
6+
s.version = '23.8.2'
77
s.summary = 'Countly is an innovative, real-time, open source mobile analytics platform.'
88
s.homepage = 'https://github.com/Countly/countly-sdk-flutter-bridge'
99
s.social_media_url = 'https://twitter.com/gocountly'

0 commit comments

Comments
 (0)