From b5f41e0742dcfeda4b74dd6a15b707ca088915e6 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 30 Dec 2023 14:14:40 +0100 Subject: [PATCH 1/2] Android: Fix syntax of the targets line in build.gradle.kts Seems like this was missed in the conversion to Kotlin in 001089dbf4. --- Source/Android/app/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Android/app/build.gradle.kts b/Source/Android/app/build.gradle.kts index ab38baddf1..4f39518977 100644 --- a/Source/Android/app/build.gradle.kts +++ b/Source/Android/app/build.gradle.kts @@ -105,7 +105,7 @@ android { abiFilters("arm64-v8a", "x86_64") //, "armeabi-v7a", "x86" // Remove the line below if you want to build the C++ unit tests - //targets "main", "hook_impl", "main_hook", "gsl_alloc_hook", "file_redirect_hook" + //targets("main", "hook_impl", "main_hook", "gsl_alloc_hook", "file_redirect_hook") } } } From b56e6cc03dc8d9544039b809eea14216c4f30e41 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 30 Dec 2023 14:16:28 +0100 Subject: [PATCH 2/2] Android: Update the comment for the targets line in build.gradle.kts This comment hasn't really made sense since 23bebc5270 commented out the relevant line. --- Source/Android/app/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Android/app/build.gradle.kts b/Source/Android/app/build.gradle.kts index 4f39518977..bc15b6a104 100644 --- a/Source/Android/app/build.gradle.kts +++ b/Source/Android/app/build.gradle.kts @@ -104,7 +104,7 @@ android { // , "-DENABLE_GENERIC=ON" abiFilters("arm64-v8a", "x86_64") //, "armeabi-v7a", "x86" - // Remove the line below if you want to build the C++ unit tests + // Uncomment the line below if you don't want to build the C++ unit tests //targets("main", "hook_impl", "main_hook", "gsl_alloc_hook", "file_redirect_hook") } }