Skip to content

Commit

Permalink
Merge branch 'staging' of github.com:Countly/countly-sdk-flutter-brid…
Browse files Browse the repository at this point in the history
…ge into staging-np
  • Loading branch information
turtledreams committed May 21, 2024
2 parents 1817a5b + 70895a3 commit d24ed6d
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
*/
public class CountlyFlutterPlugin implements MethodCallHandler, FlutterPlugin, ActivityAware, DefaultLifecycleObserver {
private static final String TAG = "CountlyFlutterPlugin";
private final String COUNTLY_FLUTTER_SDK_VERSION_STRING = "24.4.0";
private final String COUNTLY_FLUTTER_SDK_VERSION_STRING = "24.4.1";
private final String COUNTLY_FLUTTER_SDK_NAME = "dart-flutterb-android";
private final String COUNTLY_FLUTTER_SDK_NAME_NO_PUSH = "dart-flutterbnp-android";

Expand Down
2 changes: 1 addition & 1 deletion example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ dependencies {
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'ly.count.android:sdk:24.4.0'
implementation 'ly.count.android:sdk:24.4.1'
implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0"))
}
apply plugin: 'com.google.gms.google-services' // Google Play services Gradle plugin
Expand Down
2 changes: 1 addition & 1 deletion example/integration_test/utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Future<List<String>> getEventQueue() async {
void testCommonRequestParams(Map<String, List<String>> requestObject) {
expect(requestObject['app_key']?[0], APP_KEY);
expect(requestObject['sdk_name']?[0], "dart-flutterbnp-${Platform.isIOS ? "ios" : "android"}");
expect(requestObject['sdk_version']?[0], '24.4.0');
expect(requestObject['sdk_version']?[0], '24.4.1');
expect(requestObject['av']?[0], Platform.isIOS ? '0.0.1' : '1.0.0');
assert(requestObject['timestamp']?[0] != null);

Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/CountlyFlutterPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ @interface CountlyPersistency ()

CLYPushTestMode const CLYPushTestModeProduction = @"CLYPushTestModeProduction";

NSString *const kCountlyFlutterSDKVersion = @"24.4.0";
NSString *const kCountlyFlutterSDKVersion = @"24.4.1";
NSString *const kCountlyFlutterSDKName = @"dart-flutterb-ios";
NSString *const kCountlyFlutterSDKNameNoPush = @"dart-flutterbnp-ios";

Expand Down
2 changes: 1 addition & 1 deletion ios/countly_flutter_np.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
Pod::Spec.new do |s|
s.name = 'countly_flutter_np'
s.version = '24.4.0'
s.version = '24.4.1'
s.summary = 'Countly is an innovative, real-time, open source mobile analytics platform.'
s.homepage = 'https://github.com/Countly/countly-sdk-flutter-bridge'
s.social_media_url = 'https://twitter.com/gocountly'
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: countly_flutter_np
description: Countly is an innovative, real-time, open source mobile analytics. This plugin is a flavour of the SDK without push notifications.
version: 24.4.0
version: 24.4.1
homepage: https://support.count.ly/hc/en-us/articles/360037944212
repository: https://github.com/Countly/countly-sdk-flutter-bridge
issue_tracker: https://github.com/Countly/countly-sdk-flutter-bridge/issues
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.4.0'
implementation 'ly.count.android:sdk:24.4.1'
}
2 changes: 1 addition & 1 deletion scripts/no-push-files/countly_flutter_np.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
Pod::Spec.new do |s|
s.name = 'countly_flutter_np'
s.version = '24.4.0'
s.version = '24.4.1'
s.summary = 'Countly is an innovative, real-time, open source mobile analytics platform.'
s.homepage = 'https://github.com/Countly/countly-sdk-flutter-bridge'
s.social_media_url = 'https://twitter.com/gocountly'
Expand Down
2 changes: 1 addition & 1 deletion scripts/no-push-files/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: countly_flutter_np
description: Countly is an innovative, real-time, open source mobile analytics. This plugin is a flavour of the SDK without push notifications.

version: 24.4.0
version: 24.4.1
homepage: https://support.count.ly/hc/en-us/articles/360037944212-Flutter
repository: https://github.com/Countly/countly-sdk-flutter-bridge
issue_tracker: https://github.com/Countly/countly-sdk-flutter-bridge/issues
Expand Down

0 comments on commit d24ed6d

Please sign in to comment.