Skip to content

Commit 2267a27

Browse files
author
Johann Blake
committed
Updated dependency versions. Compiled to run on Android Studio Arctic Fox, 2020.3.1
1 parent 0f54e73 commit 2267a27

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ android {
99

1010
defaultConfig {
1111
applicationId "dev.wirespec.adoptme"
12-
minSdkVersion 21
12+
minSdkVersion 24
1313
targetSdkVersion 30
1414
versionCode 1
1515
versionName "1.0"
@@ -24,11 +24,11 @@ android {
2424
}
2525
}
2626
compileOptions {
27-
sourceCompatibility JavaVersion.VERSION_1_8
28-
targetCompatibility JavaVersion.VERSION_1_8
27+
sourceCompatibility JavaVersion.VERSION_11
28+
targetCompatibility JavaVersion.VERSION_11
2929
}
3030
kotlinOptions {
31-
jvmTarget = '1.8'
31+
jvmTarget = '11'
3232
useIR = true
3333
}
3434
buildFeatures {
@@ -43,13 +43,13 @@ android {
4343
dependencies {
4444

4545
def lifecycle_version = "2.4.0-alpha02"
46-
def activity_version = "1.3.0-rc01"
46+
def activity_version = "1.3.0"
4747
def retrofit_version = "2.9.0"
48-
def paging_version = "3.0.0"
48+
def paging_version = "3.1.0-alpha03"
4949

50-
implementation 'androidx.core:core-ktx:1.6.0'
50+
implementation 'androidx.core:core-ktx:1.7.0-alpha01'
5151
implementation 'androidx.appcompat:appcompat:1.4.0-alpha03'
52-
implementation 'com.google.android.material:material:1.4.0'
52+
implementation 'com.google.android.material:material:1.5.0-alpha01'
5353
implementation "androidx.activity:activity-ktx:$activity_version"
5454
implementation "androidx.activity:activity-compose:$activity_version"
5555
implementation "androidx.compose.ui:ui:$compose_version"
@@ -72,9 +72,9 @@ dependencies {
7272

7373
// Paging
7474
implementation "androidx.paging:paging-runtime:$paging_version"
75-
implementation "androidx.paging:paging-compose:1.0.0-alpha11"
75+
implementation "androidx.paging:paging-compose:1.0.0-alpha12"
7676

7777
// Coil
78-
implementation "io.coil-kt:coil:1.2.1"
79-
implementation "com.google.accompanist:accompanist-coil:0.13.0"
78+
implementation "io.coil-kt:coil:1.3.1"
79+
implementation "com.google.accompanist:accompanist-coil:0.15.0"
8080
}

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
33
ext {
4-
compose_version = '1.0.0-rc01'
4+
compose_version = '1.0.0'
55
}
66
repositories {
77
google()
88
mavenCentral()
99
}
1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:7.1.0-alpha03'
11+
classpath 'com.android.tools.build:gradle:7.1.0-alpha05'
1212
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10'
1313

1414
// NOTE: Do not place your application dependencies here; they belong
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Sat May 01 10:38:56 CEST 2021
1+
#Thu Jul 29 08:28:16 CEST 2021
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)