diff --git a/app/build.gradle b/app/build.gradle index 2daf4d4..62d4594 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -4,12 +4,12 @@ plugins { } android { - compileSdk 30 + compileSdk 33 defaultConfig { applicationId "com.tomclaw.imageloader.demo" minSdk 21 - targetSdk 30 + targetSdk 33 versionCode 1 versionName "1.0" } @@ -32,8 +32,8 @@ android { dependencies { implementation project(path: ':imageloader') - implementation 'androidx.core:core-ktx:1.6.0' - implementation 'androidx.appcompat:appcompat:1.3.1' + implementation 'androidx.core:core-ktx:1.9.0' + implementation 'androidx.appcompat:appcompat:1.6.1' implementation "androidx.recyclerview:recyclerview:1.2.1" - implementation 'com.google.android.material:material:1.4.0' + implementation 'com.google.android.material:material:1.8.0' } \ No newline at end of file diff --git a/build.gradle b/build.gradle index 2704029..032a02b 100644 --- a/build.gradle +++ b/build.gradle @@ -5,8 +5,8 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:7.2.0' - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31" + classpath 'com.android.tools.build:gradle:7.4.1' + classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 9e320e6..086edd8 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ #Tue Nov 09 12:47:14 MSK 2021 distributionBase=GRADLE_USER_HOME -distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip distributionPath=wrapper/dists zipStorePath=wrapper/dists zipStoreBase=GRADLE_USER_HOME diff --git a/imageloader/build.gradle b/imageloader/build.gradle index 81e1278..eeab0f3 100644 --- a/imageloader/build.gradle +++ b/imageloader/build.gradle @@ -5,11 +5,11 @@ plugins { } android { - compileSdk 30 + compileSdk 33 defaultConfig { minSdk 14 - targetSdk 30 + targetSdk 33 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles "consumer-rules.pro" @@ -32,11 +32,11 @@ android { } dependencies { - implementation 'com.github.solkin:disk-lru-cache:1.4' - implementation 'androidx.exifinterface:exifinterface:1.3.3' + implementation 'com.github.solkin:disk-lru-cache:1.5' + implementation 'androidx.exifinterface:exifinterface:1.3.6' testImplementation 'junit:junit:4.13.2' - androidTestImplementation 'androidx.test.ext:junit:1.1.3' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' + androidTestImplementation 'androidx.test.ext:junit:1.1.5' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' } afterEvaluate {