Skip to content

Commit ec17569

Browse files
Update all dependencies
1 parent af4c60d commit ec17569

File tree

83 files changed

+2988
-1932
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+2988
-1932
lines changed

.github/workflows/copy-branch.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it,
2121
# but specifies master branch (old default).
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v4
2323
with:
2424
fetch-depth: 0
2525
ref: master

DynamicCodeLoadingKotlin/app/build.gradle

+10-10
Original file line numberDiff line numberDiff line change
@@ -51,18 +51,18 @@ dependencies {
5151
api "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
5252
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
5353

54-
api 'androidx.appcompat:appcompat:1.0.2'
55-
implementation 'androidx.core:core-ktx:1.0.1'
56-
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
54+
api 'androidx.appcompat:appcompat:1.7.0'
55+
implementation 'androidx.core:core-ktx:1.15.0'
56+
implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
5757

58-
implementation "com.google.android.play:core:1.4.1"
58+
implementation "com.google.android.play:core:1.10.3"
5959

60-
daggerApi 'com.google.dagger:dagger:2.16'
61-
api 'com.google.dagger:dagger-android-support:2.16'
60+
daggerApi 'com.google.dagger:dagger:2.55'
61+
api 'com.google.dagger:dagger-android-support:2.55'
6262

63-
kapt 'com.google.dagger:dagger-compiler:2.16'
63+
kapt 'com.google.dagger:dagger-compiler:2.55'
6464

65-
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
66-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0-alpha04'
67-
androidTestImplementation 'androidx.test:rules:1.2.0-alpha04'
65+
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
66+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
67+
androidTestImplementation 'androidx.test:rules:1.6.1'
6868
}

DynamicCodeLoadingKotlin/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.kotlin_version = '1.4.32'
4+
ext.kotlin_version = '2.1.10'
55
repositories {
66
maven {
77
url "http://storage.googleapis.com/r8-releases/raw/master"
@@ -11,8 +11,8 @@ buildscript {
1111

1212
}
1313
dependencies {
14-
classpath 'com.android.tools:r8:2.2.64' // Must be before the Gradle Plugin for Android.
15-
classpath 'com.android.tools.build:gradle:4.2.1'
14+
classpath 'com.android.tools:r8:8.7.18' // Must be before the Gradle Plugin for Android.
15+
classpath 'com.android.tools.build:gradle:8.8.2'
1616
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1717
// NOTE: Do not place your application dependencies here; they belong
1818
// in the individual module build.gradle files

DynamicCodeLoadingKotlin/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-all.zip

DynamicCodeLoadingKotlin/storage/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ android {
4444
dependencies {
4545
implementation fileTree(dir: 'libs', include: ['*.jar'])
4646
implementation project(':app')
47-
kapt 'com.google.dagger:dagger-compiler:2.16'
47+
kapt 'com.google.dagger:dagger-compiler:2.55'
4848
}

DynamicFeatureNavigation/DSL/app/build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ android {
5353
}
5454

5555
dependencies {
56-
api 'androidx.fragment:fragment:1.3.4-ktx'
57-
api 'androidx.constraintlayout:constraintlayout:2.0.4'
58-
api "org.jetbrains.kotlin:kotlin-stdlib:1.5.0"
59-
implementation 'androidx.appcompat:appcompat:1.3.0'
60-
implementation 'androidx.navigation:navigation-dynamic-features-fragment:2.4.0-alpha01'
56+
api 'androidx.fragment:fragment:1.8.6'
57+
api 'androidx.constraintlayout:constraintlayout:2.2.1'
58+
api "org.jetbrains.kotlin:kotlin-stdlib:2.1.10"
59+
implementation 'androidx.appcompat:appcompat:1.7.0'
60+
implementation 'androidx.navigation:navigation-dynamic-features-fragment:2.8.8'
6161
}

DynamicFeatureNavigation/DSL/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ buildscript {
2121
mavenCentral()
2222
}
2323
dependencies {
24-
classpath("com.android.tools.build:gradle:7.0.0-beta02")
25-
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.0")
24+
classpath("com.android.tools.build:gradle:8.8.2")
25+
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.10")
2626
// NOTE: Do not place your application dependencies here; they belong
2727
// in the individual module build.gradle files
2828
}
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,7 @@
1-
#
2-
# Copyright 2020 The Android Open Source Project
3-
#
4-
# Licensed under the Apache License, Version 2.0 (the "License");
5-
# you may not use this file except in compliance with the License.
6-
# You may obtain a copy of the License at
7-
#
8-
# http://www.apache.org/licenses/LICENSE-2.0
9-
#
10-
# Unless required by applicable law or agreed to in writing, software
11-
# distributed under the License is distributed on an "AS IS" BASIS,
12-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
# See the License for the specific language governing permissions and
14-
# limitations under the License.
15-
#
16-
17-
#Fri Apr 17 09:44:55 BST 2020
181
distributionBase=GRADLE_USER_HOME
192
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
206
zipStoreBase=GRADLE_USER_HOME
217
zipStorePath=wrapper/dists
22-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip

0 commit comments

Comments
 (0)