Skip to content

Commit 971852c

Browse files
update dependencies
1 parent 6e5163b commit 971852c

File tree

4 files changed

+28
-8
lines changed

4 files changed

+28
-8
lines changed

.github/workflows/stale.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Mark stale issues and pull requests
2+
on:
3+
schedule:
4+
- cron: '* * 1 * *'
5+
jobs:
6+
stale:
7+
runs-on: ubuntu-latest
8+
permissions:
9+
issues: write
10+
pull-requests: write
11+
steps:
12+
- uses: actions/stale@v9
13+
with:
14+
repo-token: ${{ secrets.GITHUB_TOKEN }}
15+
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.'
16+
stale-pr-message: 'This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.'
17+
stale-issue-label: 'stale'
18+
stale-pr-label: 'stale'
19+
exempt-issue-labels: 'bug,high-priority'
20+
operations-per-run: 100

app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ dependencies {
2727
// Compile Build Dependencies
2828
implementation fileTree(include: ["*.jar"], dir: "libs")
2929
implementation 'com.google.android.material:material:1.12.0'
30-
implementation 'androidx.annotation:annotation:1.8.0'
30+
implementation 'androidx.annotation:annotation:1.8.2'
3131
implementation 'androidx.appcompat:appcompat:1.7.0'
32-
implementation 'androidx.collection:collection-ktx:1.4.1'
32+
implementation 'androidx.collection:collection-ktx:1.4.3'
3333
implementation 'androidx.core:core-ktx:1.13.1'
3434
implementation 'androidx.core:core-splashscreen:1.0.1'
3535
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
36-
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.3'
36+
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.4'
3737
implementation 'androidx.media:media:1.7.0'
3838
implementation 'androidx.preference:preference-ktx:1.2.1'
3939
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
@@ -47,7 +47,7 @@ dependencies {
4747
testImplementation 'org.robolectric:robolectric:4.13'
4848
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
4949
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
50-
testImplementation 'org.slf4j:slf4j-simple:2.0.13'
50+
testImplementation 'org.slf4j:slf4j-simple:2.0.16'
5151
testImplementation 'org.assertj:assertj-core:3.26.3'
5252
// Android Test Dependencies
5353
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'

app/build.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Build Properties
2-
#Fri Jul 12 14:55:09 EDT 2024
3-
version_build=2
2+
#Sat Aug 24 11:16:29 EDT 2024
3+
version_build=3
44
version_major=3
55
version_minor=1
66
version_patch=3

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020

2121
buildscript {
2222
ext {
23-
kotlin_version = '2.0.0'
23+
kotlin_version = '2.0.20'
2424
}
2525
repositories {
2626
google()
2727
mavenCentral()
2828
}
2929
dependencies {
30-
classpath 'com.android.tools.build:gradle:8.5.1'
30+
classpath 'com.android.tools.build:gradle:8.5.2'
3131
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
3232
classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version"
3333
}

0 commit comments

Comments
 (0)