From 47f4567b7fa3c8b504c48a1a4bfc725543cb966f Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Fri, 14 Jul 2023 16:13:39 -0300 Subject: [PATCH] Reset gradle cache --- .circleci/config.yml | 6 +++--- android/build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fd305b398..3c2881943 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -109,10 +109,10 @@ commands: description: "Build Android app" steps: - checkout - # - restore_cache: *restore-npm-cache-linux + - restore_cache: *restore-npm-cache-linux - run: *install-npm-modules - # - save_cache: *save-npm-cache-linux - # - restore_cache: *restore-gradle-cache + - save_cache: *save-npm-cache-linux + - restore_cache: *restore-gradle-cache - run: name: Configure Gradle command: | diff --git a/android/build.gradle b/android/build.gradle index 87e0b58d4..0e425cb2c 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -9,7 +9,7 @@ buildscript { compileSdkVersion = 33 targetSdkVersion = 33 - // We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP. + // We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP ndkVersion = "23.1.7779620" glideVersion = "4.11.0" kotlin_version = "1.8.22"