From 7d0b6b8de0d49c96be6edb1622d646e63a9c67b3 Mon Sep 17 00:00:00 2001 From: Chris Bobbe Date: Wed, 10 Jul 2024 14:22:03 -0700 Subject: [PATCH] android: compileSdkVersion to 34 (Android 14) As we said on the last one of these, fc2dab717: This setting is not to be confused with the targetSdkVersion. The latter goes into the built manifest, and affects a wide range of behavior, so bumping it requires careful testing. This is used purely at build time, and should have no effect on runtime behavior. This value needs to be at least as high as targetSdkVersion, and we need to bump that to 34 soon (#5877). So, do this to prepare for that. No build failures or warnings appeared for me with tools/test native --all-files . --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index aaa38a2fc0c..a389ef2e8af 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -19,7 +19,7 @@ buildscript { // https://medium.com/androiddevelopers/picking-your-compilesdkversion-minsdkversion-targetsdkversion-a098a0341ebd // What's the latest? Consult this list: // https://developer.android.com/studio/releases/platforms - compileSdkVersion = 33 + compileSdkVersion = 34 } repositories { google()