From b7b2f6c229b80467fcb68986207a006d09c53ee0 Mon Sep 17 00:00:00 2001 From: Chris Bobbe Date: Wed, 25 Sep 2024 16:09:04 -0700 Subject: [PATCH] Android: Bump compileSdkVersion from 31 to 34 The Java changes in a recent commit won't be picked up in zulip-mobile unless we build React Native from source; discussion: https://github.com/zulip/zulip-mobile/pull/5892#issuecomment-2369887715 After those Java changes, though, some new constants are read (`Context.RECEIVER_EXPORTED` and `Context.RECEIVER_NOT_EXPORTED`). To get those, we need compileSdkVersion >= 34. --- ReactAndroid/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactAndroid/build.gradle b/ReactAndroid/build.gradle index f49c6e221569c0..a972700406d0ad 100644 --- a/ReactAndroid/build.gradle +++ b/ReactAndroid/build.gradle @@ -279,7 +279,7 @@ task androidSourcesJar(type: Jar) { } android { - compileSdkVersion 31 + compileSdkVersion 34 // Used to override the NDK path/version on internal CI or by allowing // users to customize the NDK path/version from their root project (e.g. for M1 support)