We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42b638c commit f0b72a5Copy full SHA for f0b72a5
README.md
@@ -89,16 +89,16 @@ public void onCreate() {
89
}
90
```
91
92
-- Open `android/build.gradle` and change `minSdkVersion` to **21**
+- Open `android/build.gradle` and change `minSdkVersion` to **21**, `compileSdkVersion` and `targetSdkVersion` to at least **31**
93
94
```Gradle
95
buildscript {
96
// ...
97
ext {
98
buildToolsVersion = "29.0.2"
99
minSdkVersion = 21 // <-- Here
100
- compileSdkVersion = 29
101
- targetSdkVersion = 29
+ compileSdkVersion = 31 // <-- Here
+ targetSdkVersion = 31 // <-- Here
102
103
104
0 commit comments