Skip to content

Commit

Permalink
Release 1.1.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
WorldlineConnect committed Mar 29, 2024
1 parent 503cc3c commit 7df8eea
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,6 @@
## 1.1.1
## Fixed
- Fixed an issue where the collected metadata did not properly identify the Flutter SDK.
## 1.1.0
This SDK is a rebranded and updated version of the SDK that was previously published under the Ingenico name. Next to renaming to Worldline, there were some minor changes. Please have a look at the release notes below to see what has changed. Previous versions and release notes of this SDK can be found [here](https://github.com/Ingenico-ePayments/connect-sdk-client-flutter).

Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Expand Up @@ -50,7 +50,7 @@ android {
}

dependencies {
implementation 'com.worldline-solutions.connect:connect-sdk-client-android:7.0.0'
implementation 'com.worldline-solutions.connect:connect-sdk-client-android:7.0.1'
implementation 'com.google.code.gson:gson:2.10.1'

testImplementation 'org.jetbrains.kotlin:kotlin-test'
Expand Down
Expand Up @@ -62,7 +62,8 @@ class ConnectSDKMethodCallHandler(private val contextReference: WeakReference<Co
enableNetworkLogs = configurationWithoutContext.enableNetworkLogs,
applicationId = configurationWithoutContext.applicationId,
ipAddress = configurationWithoutContext.ipAddress,
preLoadImages = configurationWithoutContext.preLoadImages
preLoadImages = configurationWithoutContext.preLoadImages,
sdkIdentifier = configurationWithoutContext.sdkIdentifier
)
.build()

Expand Down
Expand Up @@ -21,5 +21,6 @@ data class ConnectSDKConfigurationWithoutContext(
val enableNetworkLogs: Boolean,
val applicationId: String?,
val ipAddress: String?,
val preLoadImages: Boolean
val preLoadImages: Boolean,
val sdkIdentifier: String
)
2 changes: 1 addition & 1 deletion ios/connect_sdk_client_flutter.podspec
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'connect_sdk_client_flutter'
s.version = '1.1.0'
s.version = '1.1.1'
s.summary = 'Connect Flutter SDK iOS Plugin'
s.description = <<-DESC
iOS plugin for the Connect Flutter SDK.
Expand Down
1 change: 1 addition & 0 deletions lib/src/configuration/configuration.g.dart
Expand Up @@ -48,6 +48,7 @@ Map<String, dynamic> _$ConnectSDKConfigurationToJson(
'applicationId': instance.applicationId,
'ipAddress': instance.ipAddress,
'preLoadImages': instance._preLoadImages,
'sdkIdentifier': instance._sdkIdentifier,
};

PaymentConfiguration _$PaymentConfigurationFromJson(Map<String, dynamic> json) {
Expand Down
4 changes: 4 additions & 0 deletions lib/src/configuration/connect_sdk_configuration.dart
Expand Up @@ -38,6 +38,10 @@ class ConnectSDKConfiguration {
@JsonKey(includeToJson: true, name: "preLoadImages")
final bool _preLoadImages = false;

/// This property is used to set the correct SDK identifier when configuring the native SDKs
@JsonKey(includeToJson: true, name: "sdkIdentifier")
final String _sdkIdentifier = "FlutterClientSDK/v1.1.1";

ConnectSDKConfiguration(this.sessionConfiguration,
{this.enableNetworkLogs = false, this.applicationId, this.ipAddress});

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
@@ -1,6 +1,6 @@
name: connect_sdk_client_flutter
description: A Flutter package to communicate with the Worldline Global Collect platform
version: 1.1.0
version: 1.1.1
homepage: https://docs.connect.worldline-solutions.com/
repository: https://github.com/Worldline-Global-Collect/connect-sdk-client-flutter
issue_tracker: https://github.com/Worldline-Global-Collect/connect-sdk-client-flutter/issues
Expand Down

0 comments on commit 7df8eea

Please sign in to comment.