From 273a489e2afce3946b796f2c0696e058a5722747 Mon Sep 17 00:00:00 2001 From: Triang3l Date: Sun, 17 Jul 2022 17:11:48 +0300 Subject: [PATCH] [Android] Exclude executables from app build --- android/android_studio_project/app/build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/android/android_studio_project/app/build.gradle b/android/android_studio_project/app/build.gradle index 6bf100840..92fc816b2 100644 --- a/android/android_studio_project/app/build.gradle +++ b/android/android_studio_project/app/build.gradle @@ -22,6 +22,9 @@ android { "-j${Runtime.runtime.availableProcessors()}", // Work around "Bad file descriptor" on Windows on NDK r22+. '--output-sync=none' + // For the app, don't build the executables designed for running from a terminal. + // To build the executables, run ndk-build manually. + targets 'xenia-app' } } ndk {