From 6e5b4bbc157ef11b94c5d125235bc1357ebc3bb3 Mon Sep 17 00:00:00 2001 From: Greyson Parrelli Date: Tue, 24 Jan 2023 13:47:33 -0500 Subject: [PATCH] Enable gradle configuration cache. Android Studio told me to do this and that it would save me over 7 seconds. We'll see if it breaks anything :p --- app/build.gradle | 5 +++++ gradle.properties | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 0afebb5042..e2a624cb75 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -106,6 +106,11 @@ android { } } + dependenciesInfo { + includeInBundle false + includeInApk false + } + testOptions { execution 'ANDROIDX_TEST_ORCHESTRATOR' diff --git a/gradle.properties b/gradle.properties index 5f01bf39c8..1ffdd911fa 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,4 +2,5 @@ org.gradle.jvmargs=-Xmx4096m android.useAndroidX=true android.enableJetifier=true kapt.incremental.apt=false -android.experimental.androidTest.numManagedDeviceShards=4 \ No newline at end of file +android.experimental.androidTest.numManagedDeviceShards=4 +org.gradle.unsafe.configuration-cache=true \ No newline at end of file