summaryrefslogtreecommitdiff
path: root/platform/android/java/app
diff options
context:
space:
mode:
authorFredia Huya-Kouadio <fhuya@meta.com>2022-10-18 21:39:43 -0700
committerFredia Huya-Kouadio <fhuya@meta.com>2022-11-30 11:16:59 -0800
commit2aba13e8fbba9ece140ebc3aeb8ae824e9d22f0a (patch)
tree65b374f2309476a80e002f99cf672d8d70e4ab61 /platform/android/java/app
parent0bb1e89fb7046209f64d46ccedc6b42645c96573 (diff)
Updating the minimum Android target api for proper Vulkan support
Diffstat (limited to 'platform/android/java/app')
-rw-r--r--platform/android/java/app/config.gradle9
1 files changed, 6 insertions, 3 deletions
diff --git a/platform/android/java/app/config.gradle b/platform/android/java/app/config.gradle
index e1d9dc4cde..f1b4bfd534 100644
--- a/platform/android/java/app/config.gradle
+++ b/platform/android/java/app/config.gradle
@@ -1,14 +1,17 @@
ext.versions = [
androidGradlePlugin: '7.2.1',
compileSdk : 32,
- minSdk : 19, // Also update 'platform/android/export/export_plugin.cpp#DEFAULT_MIN_SDK_VERSION'
- targetSdk : 32, // Also update 'platform/android/export/export_plugin.cpp#DEFAULT_TARGET_SDK_VERSION'
+ // Also update 'platform/android/export/export_plugin.cpp#DEFAULT_MIN_SDK_VERSION'
+ minSdk : 21,
+ // Also update 'platform/android/export/export_plugin.cpp#DEFAULT_TARGET_SDK_VERSION'
+ targetSdk : 32,
buildTools : '32.0.0',
kotlinVersion : '1.7.0',
fragmentVersion : '1.3.6',
nexusPublishVersion: '1.1.0',
javaVersion : 11,
- ndkVersion : '23.2.8568313' // Also update 'platform/android/detect.py#get_ndk_version()' when this is updated.
+ // Also update 'platform/android/detect.py#get_ndk_version()' when this is updated.
+ ndkVersion : '23.2.8568313'
]