Skip to content
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.

Update all dependencies (end_codelab_3) - autoclosed #304

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/blueprints.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties

- name: Set up JDK 11
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 11

- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: |
~/.gradle/caches/modules-*
Expand All @@ -44,7 +44,7 @@ jobs:

- name: Upload build reports
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: build-reports
path: app/build/reports/
Expand All @@ -59,13 +59,13 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties

- name: Set up JDK 11
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 11

Expand All @@ -79,7 +79,7 @@ jobs:

- name: Upload test reports
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: test-reports
path: app/build/reports/
34 changes: 17 additions & 17 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
buildscript {
ext.kotlinVersion = '1.5.31'
ext.navigationVersion = '2.3.5'
ext.navigationVersion = '2.8.4'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.3'
classpath 'com.android.tools.build:gradle:8.7.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"

Expand All @@ -31,29 +31,29 @@ ext {

// App dependencies
androidXVersion = '1.0.0'
androidXTestCoreVersion = '1.4.0'
androidXTestExtKotlinRunnerVersion = '1.1.3'
androidXTestCoreVersion = '1.6.1'
androidXTestExtKotlinRunnerVersion = '1.2.1'
androidXTestRulesVersion = '1.2.0'
androidXAnnotations = '1.3.0'
appCompatVersion = '1.4.0'
archLifecycleVersion = '2.4.0'
archTestingVersion = '2.1.0'
androidXAnnotations = '1.9.1'
appCompatVersion = '1.7.0'
archLifecycleVersion = '2.8.7'
archTestingVersion = '2.2.0'
coroutinesVersion = '1.5.2'
cardVersion = '1.0.0'
coroutinesVersion = '1.5.0'
dexMakerVersion = '2.28.1'
espressoVersion = '3.4.0'
fragmentVersion = '1.4.0'
dexMakerVersion = '2.28.4'
espressoVersion = '3.6.1'
fragmentVersion = '1.8.5'
hamcrestVersion = '1.3'
junitVersion = '4.13.2'
materialVersion = '1.4.0'
mockitoVersion = '3.4.6'
materialVersion = '1.12.0'
mockitoVersion = '5.14.2'
multiDexVersion = '2.0.1'
recyclerViewVersion = '1.2.1'
robolectricVersion = '4.5.1'
roomVersion = '2.3.0'
recyclerViewVersion = '1.3.2'
robolectricVersion = '4.14.1'
roomVersion = '2.6.1'
rulesVersion = '1.0.1'
swipeRefreshLayoutVersion = '1.1.0'
timberVersion = '4.7.1'
timberVersion = '5.0.1'
truthVersion = '1.1.2'
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
7 changes: 4 additions & 3 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#Mon Jun 14 12:47:31 UTC 2021
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading