Skip to content

Commit

Permalink
feat/Version 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
roland-misica committed Mar 8, 2024
1 parent 265b973 commit 3b245b0
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 8 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
## :arrow_double_up: [SDK version update guide](./documentation/VERSION_UPDATE.md)

## Release Notes
## Release Notes for 1.6.0
#### March 08, 2024
* Features
* Added In-app messages callback handler to define your customised message action handling
* Android PUSH notification permission request support
* Documentation extended with PUSH notification payload structure description, PUSH handling and more
* Anonymize feature has been described with more details in documentation


## Release Notes for 1.5.0
#### January 29, 2024
* Features
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.5.0-SNAPSHOT'
version '1.6.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 @@ -5,7 +5,7 @@

<application>
<meta-data android:name="ExponeaFlutterSDK" android:value="true" />
<meta-data android:name="ExponeaFlutterSDKVersion" android:value="1.5.0" />
<meta-data android:name="ExponeaFlutterSDKVersion" android:value="1.6.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.5.0;
MARKETING_VERSION = 1.6.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.5.0;
MARKETING_VERSION = 1.6.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.5.0;
MARKETING_VERSION = 1.6.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.5.0+1
version: 1.6.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 @@ -57,7 +57,7 @@ protocol IsExponeaFlutterSDK {
public class ExponeaFlutterVersion: NSObject, ExponeaVersionProvider {
required public override init() { }
public func getVersion() -> String {
"1.5.0"
"1.6.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.5.0
version: 1.6.0
homepage: https://exponea.com
repository: https://github.com/exponea/exponea-flutter-sdk

Expand Down

0 comments on commit 3b245b0

Please sign in to comment.