From 677d3452e2f83f05535c18d68a797385d9e789ff Mon Sep 17 00:00:00 2001 From: Mike Hardy Date: Mon, 25 Nov 2024 13:55:05 -0500 Subject: [PATCH] docs(installation): note that compileSdkVersion is 34+ now --- docs-react-native/react-native/docs/installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs-react-native/react-native/docs/installation.md b/docs-react-native/react-native/docs/installation.md index efe942e2..d1234188 100644 --- a/docs-react-native/react-native/docs/installation.md +++ b/docs-react-native/react-native/docs/installation.md @@ -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 ... }