1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Projucer (Android): Update default toolchain versions

Soon, Google Play will require apps targeting API 35+ to be compatible
with 16 KB page sizes, which is achieved by updating the NDK version.
This commit is contained in:
reuk 2025-05-15 11:31:25 +01:00
parent 94fc24e41a
commit 4bdb76158e
No known key found for this signature in database
13 changed files with 25 additions and 25 deletions

View file

@ -1,9 +1,9 @@
apply plugin: 'com.android.application'
def ndkVersionString = "26.2.11394342"
def ndkVersionString = "28.1.13356709"
android {
compileSdk 34
compileSdk 35
ndkVersion ndkVersionString
namespace "com.rmsl.jucedemorunner"
externalNativeBuild {
@ -25,7 +25,7 @@ android {
defaultConfig {
applicationId "com.rmsl.jucedemorunner"
minSdkVersion 24
targetSdkVersion 34
targetSdkVersion 35
externalNativeBuild {
cmake {
arguments "-DANDROID_TOOLCHAIN=clang", "-DANDROID_PLATFORM=android-24", "-DANDROID_STL=c++_static", "-DANDROID_CPP_FEATURES=exceptions rtti", "-DANDROID_ARM_MODE=arm", "-DANDROID_ARM_NEON=TRUE", "-DANDROID_WEAK_API_DEFS=ON", "-DCMAKE_CXX_STANDARD=17", "-DCMAKE_CXX_EXTENSIONS=OFF"