Skip to content

Commit

Permalink
feat/Version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
roland-misica committed Dec 13, 2024
1 parent cd02f5a commit da4db9f
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 8 deletions.
15 changes: 15 additions & 0 deletions Documentation/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,21 @@ parentDocSlug: flutter-sdk
>
> 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.
## Release Notes
## Release Notes for 2.0.0
#### December 13, 2024
* Added:
* Updates native Android SDK to version 4.0.1.
* Updates native iOS SDK to version 3.0.1.
* Updates the default session timeout to 60 seconds.
* Adds a manualSessionAutoClose configuration parameter to override automatic session end tracking for open sessions when sessionStart is called multiple times.
* Adds compatibility with Android Gradle Plugin 8.
* Adds identification of Cancel button clicks in in-app message close events and inclusion of the button label in the tracked event.
* Adds minor documentation improvements.
* Fixed:
* Fixes an issue on iOS where an empty App Inbox caused click events to be passed to the underlying app.
* Fixes an issue where, in certain scenarios, the app would crash while parsing Recommendations .

## Release Notes
## Release Notes for 1.7.0
#### August 07, 2024
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.exponea'
version '1.7.0-SNAPSHOT'
version '2.0.0-SNAPSHOT'

buildscript {
ext {
Expand Down
2 changes: 1 addition & 1 deletion android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<application>
<meta-data android:name="ExponeaFlutterSDK" android:value="true" />
<meta-data android:name="ExponeaFlutterSDKVersion" android:value="1.7.0" />
<meta-data android:name="ExponeaFlutterSDKVersion" android:value="2.0.0" />
<receiver
android:name=".ExponeaPushReceiver"
android:enabled="true"
Expand Down
6 changes: 3 additions & 3 deletions example/ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.7.0;
MARKETING_VERSION = 2.0.0;
PRODUCT_BUNDLE_IDENTIFIER = "com.exponea.ExponeaSDK-Example2";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "Exponea iOS SDK Example App";
Expand Down Expand Up @@ -1223,7 +1223,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.7.0;
MARKETING_VERSION = 2.0.0;
PRODUCT_BUNDLE_IDENTIFIER = "com.exponea.ExponeaSDK-Example2";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "Exponea iOS SDK Example App";
Expand Down Expand Up @@ -1257,7 +1257,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.7.0;
MARKETING_VERSION = 2.0.0;
PRODUCT_BUNDLE_IDENTIFIER = "com.exponea.ExponeaSDK-Example2";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "Exponea iOS SDK Example App";
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: exponea_example
description: Demonstrates how to use the exponea plugin.
version: 1.7.0+1
version: 2.0.0+1
publish_to: 'none'

environment:
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/SwiftExponeaPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ protocol IsExponeaFlutterSDK {
public class ExponeaFlutterVersion: NSObject, ExponeaVersionProvider {
required public override init() { }
public func getVersion() -> String {
"1.7.0"
"2.0.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: exponea
description: >-
A full featured wrapper for Exponea SDK that supports Android and iOS.
version: 1.7.0
version: 2.0.0
homepage: https://exponea.com
repository: https://github.com/exponea/exponea-flutter-sdk

Expand Down

0 comments on commit da4db9f

Please sign in to comment.