Skip to content

Commit da4db9f

Browse files
committed
feat/Version 2.0.0
1 parent cd02f5a commit da4db9f

File tree

7 files changed

+23
-8
lines changed

7 files changed

+23
-8
lines changed

Documentation/release-notes.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,21 @@ parentDocSlug: flutter-sdk
1010
>
1111
> Refer to the [SDK version update guide](https://documentation.bloomreach.com/engagement/docs/flutter-sdk-version-update) for details on updating from version 0.x.x to 1.x.x.
1212
13+
## Release Notes
14+
## Release Notes for 2.0.0
15+
#### December 13, 2024
16+
* Added:
17+
* Updates native Android SDK to version 4.0.1.
18+
* Updates native iOS SDK to version 3.0.1.
19+
* Updates the default session timeout to 60 seconds.
20+
* Adds a manualSessionAutoClose configuration parameter to override automatic session end tracking for open sessions when sessionStart is called multiple times.
21+
* Adds compatibility with Android Gradle Plugin 8.
22+
* Adds identification of Cancel button clicks in in-app message close events and inclusion of the button label in the tracked event.
23+
* Adds minor documentation improvements.
24+
* Fixed:
25+
* Fixes an issue on iOS where an empty App Inbox caused click events to be passed to the underlying app.
26+
* Fixes an issue where, in certain scenarios, the app would crash while parsing Recommendations .
27+
1328
## Release Notes
1429
## Release Notes for 1.7.0
1530
#### August 07, 2024

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group 'com.exponea'
2-
version '1.7.0-SNAPSHOT'
2+
version '2.0.0-SNAPSHOT'
33

44
buildscript {
55
ext {

android/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<application>
66
<meta-data android:name="ExponeaFlutterSDK" android:value="true" />
7-
<meta-data android:name="ExponeaFlutterSDKVersion" android:value="1.7.0" />
7+
<meta-data android:name="ExponeaFlutterSDKVersion" android:value="2.0.0" />
88
<receiver
99
android:name=".ExponeaPushReceiver"
1010
android:enabled="true"

example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,7 @@
804804
"$(inherited)",
805805
"@executable_path/Frameworks",
806806
);
807-
MARKETING_VERSION = 1.7.0;
807+
MARKETING_VERSION = 2.0.0;
808808
PRODUCT_BUNDLE_IDENTIFIER = "com.exponea.ExponeaSDK-Example2";
809809
PRODUCT_NAME = "$(TARGET_NAME)";
810810
PROVISIONING_PROFILE_SPECIFIER = "Exponea iOS SDK Example App";
@@ -1223,7 +1223,7 @@
12231223
"$(inherited)",
12241224
"@executable_path/Frameworks",
12251225
);
1226-
MARKETING_VERSION = 1.7.0;
1226+
MARKETING_VERSION = 2.0.0;
12271227
PRODUCT_BUNDLE_IDENTIFIER = "com.exponea.ExponeaSDK-Example2";
12281228
PRODUCT_NAME = "$(TARGET_NAME)";
12291229
PROVISIONING_PROFILE_SPECIFIER = "Exponea iOS SDK Example App";
@@ -1257,7 +1257,7 @@
12571257
"$(inherited)",
12581258
"@executable_path/Frameworks",
12591259
);
1260-
MARKETING_VERSION = 1.7.0;
1260+
MARKETING_VERSION = 2.0.0;
12611261
PRODUCT_BUNDLE_IDENTIFIER = "com.exponea.ExponeaSDK-Example2";
12621262
PRODUCT_NAME = "$(TARGET_NAME)";
12631263
PROVISIONING_PROFILE_SPECIFIER = "Exponea iOS SDK Example App";

example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: exponea_example
22
description: Demonstrates how to use the exponea plugin.
3-
version: 1.7.0+1
3+
version: 2.0.0+1
44
publish_to: 'none'
55

66
environment:

ios/Classes/SwiftExponeaPlugin.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ protocol IsExponeaFlutterSDK {
8080
public class ExponeaFlutterVersion: NSObject, ExponeaVersionProvider {
8181
required public override init() { }
8282
public func getVersion() -> String {
83-
"1.7.0"
83+
"2.0.0"
8484
}
8585
}
8686

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: exponea
22
description: >-
33
A full featured wrapper for Exponea SDK that supports Android and iOS.
4-
version: 1.7.0
4+
version: 2.0.0
55
homepage: https://exponea.com
66
repository: https://github.com/exponea/exponea-flutter-sdk
77

0 commit comments

Comments
 (0)