From c8f801d246cdcab79e5706fe595d0af17c8c2f02 Mon Sep 17 00:00:00 2001 From: Chris Bobbe Date: Fri, 20 Sep 2024 15:16:36 -0700 Subject: [PATCH] android: Update targetSdkVersion to 34, i.e., Android 14 This change will be required in order to upload new releases to the Play Store, effective 2024-10-31, which includes the extension we requested. This change causes Android 14 and later to apply to our app a number of behavior changes introduced in that version, documented here: https://developer.android.com/about/versions/14/behavior-changes-14 Fixes: #5877 --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index 478a605ac32..e822162d4f1 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -13,7 +13,7 @@ buildscript { // but some testing is required and code changes are often required. // See upstream for background and more discussion: // https://medium.com/androiddevelopers/picking-your-compilesdkversion-minsdkversion-targetsdkversion-a098a0341ebd - targetSdkVersion = 33 + targetSdkVersion = 34 // Should be the latest SDK version available. See upstream recommendation: // https://medium.com/androiddevelopers/picking-your-compilesdkversion-minsdkversion-targetsdkversion-a098a0341ebd