Skip to content

Commit ea611fe

Browse files
authored
feat/Version 1.7.0
1 parent b59c2b1 commit ea611fe

File tree

7 files changed

+24
-8
lines changed

7 files changed

+24
-8
lines changed

Documentation/release-notes.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,22 @@ 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 1.7.0
15+
#### August 07, 2024
16+
* Added:
17+
* Introduces improved SDK documentation at documentation.bloomreach.com.
18+
* Updates native Android SDK to version 3.16.0.
19+
* Updates native iOS SDK to version 2.28.0.
20+
* Extends the SDK API with:
21+
* In-app content block callback and tracking methods
22+
* In-app message callbacks and tracking methods
23+
* A method to track payment events
24+
* Methods related to handling and tracking push notifications
25+
* Fixed:
26+
* Fixes incorrectly mapped parameters in trackAppInboxClick.
27+
* Fixes incorrect links and other minor issues in the documentation.
28+
1329
## Release Notes for 1.6.0
1430
#### March 08, 2024
1531
* Features

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.6.0-SNAPSHOT'
2+
version '1.7.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
@@ -5,7 +5,7 @@
55

66
<application>
77
<meta-data android:name="ExponeaFlutterSDK" android:value="true" />
8-
<meta-data android:name="ExponeaFlutterSDKVersion" android:value="1.6.0" />
8+
<meta-data android:name="ExponeaFlutterSDKVersion" android:value="1.7.0" />
99
<receiver
1010
android:name=".ExponeaPushReceiver"
1111
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.6.0;
807+
MARKETING_VERSION = 1.7.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.6.0;
1226+
MARKETING_VERSION = 1.7.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.6.0;
1260+
MARKETING_VERSION = 1.7.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.6.0+1
3+
version: 1.7.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.6.0"
83+
"1.7.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.6.0
4+
version: 1.7.0
55
homepage: https://exponea.com
66
repository: https://github.com/exponea/exponea-flutter-sdk
77

0 commit comments

Comments
 (0)