diff --git a/src/android/app/build.gradle.kts b/src/android/app/build.gradle.kts index 10a667630e..5ffa0d178b 100644 --- a/src/android/app/build.gradle.kts +++ b/src/android/app/build.gradle.kts @@ -28,7 +28,7 @@ android { namespace = "org.yuzu.yuzu_emu" compileSdkVersion = "android-34" - ndkVersion = "26.3.11579264" + ndkVersion = "28.0.12674087" buildFeatures { viewBinding = true @@ -171,6 +171,20 @@ android { "-DCMAKE_EXPORT_COMPILE_COMMANDS=ON" ) + cFlags( + "-O3", + "-march=armv8.7a", + "-pipe", + "-flto=thin" + ) + + cppFlags( + "-O3", + "-march=armv8.7a", + "-pipe", + "-flto=thin" + ) + abiFilters("arm64-v8a", "x86_64") } }