Skip to content

Commit 356c804

Browse files
Merge pull request #17 from Vitaly-V/fix/ios-sdk-18.5-compatibility
Fix/ios sdk 18.5 compatibility
2 parents 5ea46f6 + 2f8ae17 commit 356c804

File tree

11 files changed

+37
-13
lines changed

11 files changed

+37
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Prerequisites:
7777
- In your `ios/Podfile`, update your ios sdk version :
7878

7979
```rb
80-
platform :ios, '11.0'
80+
platform :ios, '15.1'
8181
```
8282

8383
## About Lyra

flutter_lyra/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.5.0
2+
3+
- **BREAKING CHANGE**: [iOS] Minimum iOS deployment target increased from 11.0 to 15.1
4+
- **FIX**: [iOS] Update LyraPaymentSDK from ~2.7.7 to ~2.8.0 to fix iOS SDK 18.5 compatibility issues
5+
- **FIX**: [iOS] Resolve C++ static assertion failures with Sentry dependency by using LyraPaymentSDK 2.8.0+ which removes Sentry dependency
6+
17
# 0.4.3
28

39
- **UPGRADE**: Upgrade iOS LyraCardsRecognizer to 2.0.2

flutter_lyra/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Prerequisites:
7777
- In your `ios/Podfile`, update your ios sdk version :
7878

7979
```rb
80-
platform :ios, '11.0'
80+
platform :ios, '15.1'
8181
```
8282

8383
## About Lyra

flutter_lyra/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: flutter_lyra
22
description: This package allows you to use the methods from the lyra android and ios native sdks in Flutter
33

4-
version: 0.4.3
4+
version: 0.5.0
55

66
homepage: https://github.com/bamlab/Flutter-Lyra
77
repository: https://github.com/bamlab/Flutter-Lyra
@@ -22,9 +22,9 @@ dependencies:
2222
equatable: ^2.0.5
2323
flutter:
2424
sdk: flutter
25-
flutter_lyra_android: ^0.4.0
26-
flutter_lyra_ios: ^0.4.3
27-
flutter_lyra_platform_interface: ^0.4.0
25+
flutter_lyra_android: ^0.5.0
26+
flutter_lyra_ios: ^0.5.0
27+
flutter_lyra_platform_interface: ^0.5.0
2828
dev_dependencies:
2929
analyzer: ^4.7.0
3030
flutter_test:

flutter_lyra_android/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.5.0
2+
3+
- **BREAKING CHANGE**: [iOS] Minimum iOS deployment target increased from 11.0 to 15.1
4+
- **FIX**: [iOS] Update LyraPaymentSDK from ~2.7.7 to ~2.8.0 to fix iOS SDK 18.5 compatibility issues
5+
- **FIX**: [iOS] Resolve C++ static assertion failures with Sentry dependency by using LyraPaymentSDK 2.8.0+ which removes Sentry dependency
6+
17
# 0.4.0
28

39
- [Android] Upgrade kotlin version

flutter_lyra_android/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: flutter_lyra_android
22
description: Android implementation of the flutter_lyra plugin
33

4-
version: 0.4.0
4+
version: 0.5.0
55

66
homepage: https://github.com/bamlab/Flutter-Lyra
77
repository: https://github.com/bamlab/Flutter-Lyra
@@ -22,7 +22,7 @@ flutter:
2222
dependencies:
2323
flutter:
2424
sdk: flutter
25-
flutter_lyra_platform_interface: ^0.4.0
25+
flutter_lyra_platform_interface: ^0.5.0
2626
dev_dependencies:
2727
analyzer: ^5.13.0
2828
flutter_test:

flutter_lyra_ios/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.5.0
2+
3+
- **BREAKING CHANGE**: Minimum iOS deployment target increased from 11.0 to 15.1
4+
- **FIX**: Update LyraPaymentSDK from ~2.7.7 to ~2.8.0 to fix iOS SDK 18.5 compatibility issues
5+
- **FIX**: Resolve C++ static assertion failures with Sentry dependency by using LyraPaymentSDK 2.8.0+ which removes Sentry dependency
6+
17
# 0.4.1
28

39
- **CHORE**: add support for Xcode 16

flutter_lyra_ios/ios/flutter_lyra_ios.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ Pod::Spec.new do |s|
1616
s.public_header_files = 'Classes/**/*.h'
1717
s.dependency 'Flutter'
1818

19-
s.platform = :ios, '11.0'
19+
s.platform = :ios, '15.1'
2020
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
2121
s.swift_version = '5.0'
2222

23-
s.dependency 'LyraPaymentSDK', '~> 2.7.7'
23+
s.dependency 'LyraPaymentSDK', '~> 2.8.0'
2424
s.dependency 'LyraCardsRecognizer', '~> 2.0.2'
2525
end

flutter_lyra_ios/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_lyra_ios
22
description: iOS implementation of the flutter_lyra plugin
3-
version: 0.4.3
3+
version: 0.5.0
44
homepage: https://github.com/bamlab/Flutter-Lyra
55
repository: https://github.com/bamlab/Flutter-Lyra
66

@@ -19,7 +19,7 @@ flutter:
1919
dependencies:
2020
flutter:
2121
sdk: flutter
22-
flutter_lyra_platform_interface: ^0.4.0
22+
flutter_lyra_platform_interface: ^0.5.0
2323
dev_dependencies:
2424
analyzer: ^4.7.0
2525
flutter_test:

flutter_lyra_platform_interface/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.5.0
2+
3+
- **BREAKING CHANGE**: [iOS] Minimum iOS deployment target increased from 11.0 to 15.1
4+
- **FIX**: [iOS] Update LyraPaymentSDK from ~2.7.7 to ~2.8.0 to fix iOS SDK 18.5 compatibility issues
5+
- **FIX**: [iOS] Resolve C++ static assertion failures with Sentry dependency by using LyraPaymentSDK 2.8.0+ which removes Sentry dependency
6+
17
# 0.4.0
28

39
- [Android] Upgrade kotlin version

0 commit comments

Comments
 (0)