diff options
| author | Triang3l <triang3l@yandex.ru> | 2022-07-17 17:11:48 +0300 |
|---|---|---|
| committer | Triang3l <triang3l@yandex.ru> | 2022-07-17 17:11:48 +0300 |
| commit | 273a489e2afce3946b796f2c0696e058a5722747 (patch) | |
| tree | 4a50b700a51617a19ba401b6de8dab1fe4f0202d /android | |
| parent | 23410d012d9c6c85669b62b635f5a31425778fca (diff) | |
[Android] Exclude executables from app build
Diffstat (limited to 'android')
| -rw-r--r-- | android/android_studio_project/app/build.gradle | 3 |
1 files changed, 3 insertions, 0 deletions
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 { |
