File tree Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,24 @@ target 'Runner' do
103103
104104#### Android
105105
106- No specific settings are required.
106+ 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.
107+
108+ Here's how you can do it:
109+
110+ 1 . Open your app's ` build.gradle ` file.
111+ 2 . Locate the ` android ` block, and within it, find the ` defaultConfig ` block.
112+ 3 . In the ` defaultConfig ` block, replace the current ` minSdk ` value with ` 24 ` .
113+
114+ Here's a diff to show what your changes might look like:
115+
116+ ``` diff
117+ android {
118+ defaultConfig {
119+ - minSdk flutter.minSdkVersion
120+ + minSdk 24
121+ }
122+ }
123+ ```
107124
108125### Importing and using
109126
You can’t perform that action at this time.
0 commit comments