Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release Note

## 2.32.0
- Update latest versions of native Android (2.48.0) and iOS (2.48.0) sdks.

> **⚠️ Warning:** The minimum iOS deployment target is now **15.0**, as required by Flutter 3.47+.

## 2.31.0
- Update latest versions of native Android (2.47.0) and iOS (2.47.0) sdks.
- Fix DCS signature events (`onDcsSignatureReady`, `onDcsSignatureError`) never being triggered.
Expand Down
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//noinspection GrPackage

group = "io.didomi.fluttersdk"
version = "2.31.0"
version = "2.32.0"

buildscript {
ext.kotlin_version = "2.3.20"
Expand Down Expand Up @@ -66,7 +66,7 @@ kotlin {

dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version")
implementation("io.didomi.sdk:android:2.47.0")
implementation("io.didomi.sdk:android:2.48.0")
implementation("androidx.multidex:multidex:2.0.1")
implementation("com.google.code.gson:gson:2.13.2")
}
4 changes: 2 additions & 2 deletions example/ios/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Uncomment this line to define a global platform for your project
platform :ios, '13.0'
platform :ios, '15.0'

# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
Expand Down Expand Up @@ -42,7 +42,7 @@ post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
end
end
end
2 changes: 1 addition & 1 deletion example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
Flutter: cabc95a1d2626b1b06e7179b784ebcf0c0cde467

PODFILE CHECKSUM: e2772aabdb96c4d254f2b01df983810e9a468979
PODFILE CHECKSUM: 75afb64d03bc205b60c0ed1cc18e3f19cb29c222

COCOAPODS: 1.17.0
12 changes: 6 additions & 6 deletions example/ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SUPPORTED_PLATFORMS = iphoneos;
Expand Down Expand Up @@ -527,7 +527,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -576,7 +576,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SUPPORTED_PLATFORMS = iphoneos;
Expand Down Expand Up @@ -654,7 +654,7 @@
DEVELOPMENT_TEAM = M8WSGVXRUU;
GCC_C_LANGUAGE_STANDARD = gnu11;
INFOPLIST_FILE = RunnerTests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down Expand Up @@ -687,7 +687,7 @@
DEVELOPMENT_TEAM = M8WSGVXRUU;
GCC_C_LANGUAGE_STANDARD = gnu11;
INFOPLIST_FILE = RunnerTests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down Expand Up @@ -719,7 +719,7 @@
DEVELOPMENT_TEAM = M8WSGVXRUU;
GCC_C_LANGUAGE_STANDARD = gnu11;
INFOPLIST_FILE = RunnerTests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down
6 changes: 3 additions & 3 deletions ios/didomi_sdk.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
#
Pod::Spec.new do |s|
s.name = 'didomi_sdk'
s.version = '2.31.0'
s.version = '2.32.0'
s.summary = 'Didomi CMP Plugin.'
s.homepage = 'https://github.com/didomi/flutter'
s.license = { :type => 'BSD', :file => '../LICENSE' }
s.author = { 'Didomi ' => 'tech@didomi.io' }
s.source = { :path => 'git@github.com:didomi/flutter.git', :tag => '2.31.0' }
s.source = { :path => 'git@github.com:didomi/flutter.git', :tag => '2.32.0' }
s.source_files = 'didomi_sdk/Sources/**/*.{swift,h,m}'
s.public_header_files = 'didomi_sdk/Sources/DidomiObjC/include/**/*.h'
s.dependency 'Flutter'
s.dependency 'Didomi-XCFramework', '2.47.0'
s.dependency 'Didomi-XCFramework', '2.48.0'
s.platform = :ios, '13.0'

# Flutter.framework does not contain a i386 slice.
Expand Down
2 changes: 1 addition & 1 deletion ios/didomi_sdk/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let package = Package(
.library(name: "didomi-sdk", targets: ["didomi_sdk"])
],
dependencies: [
.package(url: "https://github.com/didomi/didomi-ios-sdk-spm", from: "2.47.0")
.package(url: "https://github.com/didomi/didomi-ios-sdk-spm", from: "2.48.0")
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: didomi_sdk
description: The Didomi CMP Plugin allows companies to collect, store, and leverage user consent under GDPR, CCPA, and other data privacy regulations.
version: 2.31.0
version: 2.32.0
repository: https://github.com/didomi/flutter

environment:
Expand Down