Skip to content

Commit 9c44af4

Browse files
committed
Update readme and change log
1 parent 3c34796 commit 9c44af4

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 2.3.5
2+
3+
### Fixed
4+
5+
* Update license holder name in all source code files. Now LY Corporation is the license holder of LINE SDK Swift. The license content and terms itself is not changed so you can still use the SDK under the same condition as before. [#86](https://github.com/line/flutter_line_sdk/pull/86)
6+
* Increase the minimum deploy version to iOS 13.0 and Android API Level 24 (Android 7.0) to match modern development requirements.
7+
18
## 2.3.4
29

310
### Fixed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ For more examples, see the [example app](https://github.com/line/flutter_line_sd
3232

3333
From version 2.0, `flutter_line_sdk` supports [null safety](https://dart.dev/null-safety). If you are still seeking a legacy version without null safety, check [version 1.3.0](https://github.com/line/flutter_line_sdk/releases/tag/1.3.0).
3434

35-
- iOS 10.0 or later as the deployment target
36-
- Android `minSdkVersion` set to 21 or higher (Android 5.0 or later)
35+
- iOS 13.0 or later as the deployment target
36+
- Android `minSdkVersion` set to 24 or higher (Android 7.0 or later)
3737
- [LINE Login channel linked to your app](https://developers.line.biz/en/docs/line-login/getting-started/)
3838

3939
To access your LINE Login channel from a mobile platform, you need some extra configuration. In the [LINE Developers console][console], go to your LINE Login channel settings, and enter the below information on the **App settings** tab.
@@ -90,11 +90,11 @@ Open the file `ios/Runner/Info.plist` in a text editor and insert this snippet j
9090
</array>
9191
```
9292

93-
Because LINE SDK now requires iOS 10.0 or above to provide underlying native features, you must add this line in the `Runner` target in `ios/Podfile`:
93+
Because LINE SDK now requires iOS 13.0 or above to provide underlying native features, you must add this line in the `Runner` target in `ios/Podfile`:
9494

9595
```diff
9696
target 'Runner' do
97-
+ platform :ios, '10.0'
97+
+ platform :ios, '13.0'
9898

9999
use_frameworks!
100100
use_modular_headers!

0 commit comments

Comments
 (0)