Skip to content

Commit

Permalink
docs(installation): note that compileSdkVersion is 34+ now
Browse files Browse the repository at this point in the history
  • Loading branch information
mikehardy committed Nov 25, 2024
1 parent 997b719 commit 677d345
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs-react-native/react-native/docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ yarn add @notifee/react-native

### 2a. Android API versions

The values of the compileSdkVersion & targetSdkVersion might need to be changed. compileSdkVersion needs to be at least 33. In addition, if your app is going to request permission on Android 13 via requestPermission, targetSdkVersion needs to be at least 33, as well. These setting are in the file `/android/build.gradle`.
The values of the compileSdkVersion & targetSdkVersion might need to be changed. compileSdkVersion needs to be at least 34. In addition, if your app is going to request permission on Android 13 via requestPermission, targetSdkVersion needs to be at least 33, as well. These setting are in the file `/android/build.gradle`.

```gradle
buildscript {
ext {
compileSdkVersion = 33 // at least 33
compileSdkVersion = 34 // at least 34
targetSdkVersion = 33 // If requesting permission on Android 13 via requestPermission, at least 33
...
}
Expand Down

0 comments on commit 677d345

Please sign in to comment.