From 73c913cdfad55b0729302bfb60c2c444141bf0d7 Mon Sep 17 00:00:00 2001 From: Milos Kozak Date: Thu, 20 Jul 2023 09:55:30 +0200 Subject: [PATCH] circleci java 17 --- .circleci/config.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5eb4ec2ce1..5cea17beda 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,7 +4,7 @@ version: 2.1 # Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects. orbs: - android: circleci/android@1.0.3 + android: circleci/android@2.3.0 codecov: codecov/codecov@3.2.4 jobs: @@ -13,11 +13,14 @@ jobs: # These next lines define the Android machine image executor: https://circleci.com/docs/2.0/executor-types/ executor: name: android/android-machine + resource-class: large + tag: 2023.07.1 steps: # Checkout the code as the first step. - checkout - + - android/change-java-version: + java-version: 17 # The next step will run the unit tests - android/run-tests: test-command: ./gradlew testFullDebugUnitTest