You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+10-1
Original file line number
Diff line number
Diff line change
@@ -90,7 +90,12 @@ Open the file `ios/Runner/Info.plist` in a text editor and insert this snippet j
90
90
</array>
91
91
```
92
92
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`:
93
+
Because LINE SDK now requires iOS 13.0 or above to provide underlying native features, while the default deployment
94
+
target of Flutter is 12.0, you must set the deployment target to 13.0 or higher.
95
+
96
+
##### CocoaPods integration
97
+
98
+
If you are using CocoaPods in your project, add this line in the `Runner` target in `ios/Podfile`:
94
99
95
100
```diff
96
101
target 'Runner' do
@@ -101,6 +106,10 @@ target 'Runner' do
101
106
...
102
107
```
103
108
109
+
##### Swift Package Manager integration
110
+
111
+
If you are using Swift Package Manager in your project, open the project and [increase the **Minimum Deployments**](https://docs.flutter.dev/packages-and-plugins/swift-package-manager/for-app-developers#how-to-use-a-swift-package-manager-flutter-plugin-that-requires-a-higher-os-version) of your app's target to 13.0.
112
+
104
113
#### Android
105
114
106
115
To ensure compatibility with the latest features, you need to update the `minSdk` version in your app's `build.gradle` file to `24` or higher.
0 commit comments