Skip to content

Commit 3b245b0

Browse files
committed
feat/Version 1.6.0
1 parent 265b973 commit 3b245b0

File tree

7 files changed

+17
-8
lines changed

7 files changed

+17
-8
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
## :arrow_double_up: [SDK version update guide](./documentation/VERSION_UPDATE.md)
22

33
## Release Notes
4+
## Release Notes for 1.6.0
5+
#### March 08, 2024
6+
* Features
7+
* Added In-app messages callback handler to define your customised message action handling
8+
* Android PUSH notification permission request support
9+
* Documentation extended with PUSH notification payload structure description, PUSH handling and more
10+
* Anonymize feature has been described with more details in documentation
11+
12+
413
## Release Notes for 1.5.0
514
#### January 29, 2024
615
* 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.5.0-SNAPSHOT'
2+
version '1.6.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.5.0" />
8+
<meta-data android:name="ExponeaFlutterSDKVersion" android:value="1.6.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.5.0;
807+
MARKETING_VERSION = 1.6.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.5.0;
1226+
MARKETING_VERSION = 1.6.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.5.0;
1260+
MARKETING_VERSION = 1.6.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.5.0+1
3+
version: 1.6.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
@@ -57,7 +57,7 @@ protocol IsExponeaFlutterSDK {
5757
public class ExponeaFlutterVersion: NSObject, ExponeaVersionProvider {
5858
required public override init() { }
5959
public func getVersion() -> String {
60-
"1.5.0"
60+
"1.6.0"
6161
}
6262
}
6363

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.5.0
4+
version: 1.6.0
55
homepage: https://exponea.com
66
repository: https://github.com/exponea/exponea-flutter-sdk
77

0 commit comments

Comments
 (0)