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 8142ef6 commit 44ec87bCopy full SHA for 44ec87b
README.md
@@ -94,16 +94,16 @@ public void onCreate() {
94
}
95
```
96
97
-- Open `android/build.gradle` and change `minSdkVersion` to **23**, `compileSdkVersion` to at least **34** and `targetSdkVersion` to at least **33**
+- Open `android/build.gradle` and change `minSdkVersion` to **23**, `compileSdkVersion` and `targetSdkVersion` to **35**
98
99
```Gradle
100
buildscript {
101
// ...
102
ext {
103
- buildToolsVersion = "29.0.2"
+ buildToolsVersion = "35.0.0"
104
minSdkVersion = 23 // <-- Here
105
- compileSdkVersion = 34 // <-- Here
106
- targetSdkVersion = 33 // <-- Here
+ compileSdkVersion = 35 // <-- Here
+ targetSdkVersion = 35 // <-- Here
107
108
109
0 commit comments