From 5e1f253dd31e3dccb773249bd9a138e058dae5df Mon Sep 17 00:00:00 2001 From: Lonami Exo Date: Mon, 17 Oct 2022 17:44:31 +0200 Subject: [PATCH] Build Rust side only for arm64 This reduces the build time since the other targets are unused. --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 34f48af..40e655a 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -69,7 +69,7 @@ dependencies { cargo { module = "../native" libname = "talaria" - targets = ["arm64", "arm", "x86"] + targets = ["arm64"] profile = 'release' }