From f6f1d4ce9736b107a5fcceddffc6454330d0bbed Mon Sep 17 00:00:00 2001 From: Mygod Date: Fri, 3 Aug 2018 20:56:04 +0800 Subject: [PATCH] Update dependencies --- .circleci/config.yml | 14 ++++++-------- build.gradle | 4 ++-- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 33889628..1a405121 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,19 +9,17 @@ jobs: steps: - checkout - run: git submodule sync - - run: git submodule update --init + - run: git submodule update --init --recursive - restore_cache: key: jars-{{ checksum "build.gradle" }} - - run: - name: Download Dependencies - command: ./gradlew androidDependencies - - save_cache: - paths: - - ~/.gradle - key: jars-{{ checksum "build.gradle" }} - run: name: Run Build and Tests command: ./gradlew assembleDebug check + - save_cache: + paths: + - ~/.gradle + - ~/.android/build-cache + key: jars-{{ checksum "build.gradle" }} - store_artifacts: path: mobile/build/outputs/apk destination: apk diff --git a/build.gradle b/build.gradle index 8aed13ec..9dd59c5c 100644 --- a/build.gradle +++ b/build.gradle @@ -4,8 +4,8 @@ apply plugin: 'com.github.ben-manes.versions' buildscript { ext { - androidPluginVersion = '3.2.0-beta04' - kotlinVersion = '1.2.51' + androidPluginVersion = '3.2.0-beta05' + kotlinVersion = '1.2.60' androidxVersion = '1.0.0-beta01' } repositories {