Skip to content

Commit

Permalink
Update dependencies and target SDK version
Browse files Browse the repository at this point in the history
  • Loading branch information
solkin committed Oct 4, 2024
1 parent 3df0266 commit f225c81
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.application'

android {
compileSdk 33
compileSdk 34
namespace = "com.tomclaw.cache.demo"
defaultConfig {
applicationId "com.tomclaw.cache.demo"
minSdkVersion 16
targetSdkVersion 33
minSdkVersion 21
targetSdkVersion 34
versionCode 1
versionName "1.1"
}
Expand All @@ -19,8 +19,8 @@ android {
}

dependencies {
implementation 'androidx.appcompat:appcompat:1.4.2'
implementation 'com.google.android.material:material:1.6.1'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'com.google.android.material:material:1.12.0'
implementation 'androidx.recyclerview:recyclerview:1.3.2'
implementation project(path: ':cache')
}
6 changes: 3 additions & 3 deletions cache/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ plugins {
}

android {
compileSdk 33
compileSdk 34
namespace = "com.tomclaw.cache"
defaultConfig {
minSdkVersion 16
targetSdkVersion 33
targetSdkVersion 34
}

buildTypes {
Expand All @@ -21,5 +21,5 @@ android {
}

dependencies {
testImplementation 'junit:junit:4.13.1'
testImplementation 'junit:junit:4.13.2'
}
2 changes: 1 addition & 1 deletion jitpack.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
jdk:
- openjdk11
- openjdk17

0 comments on commit f225c81

Please sign in to comment.