File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed
src/main/kotlin/com/guru/composecookbook/build/dependencies Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ android {
49
49
composeOptions {
50
50
kotlinCompilerExtensionVersion = ProjectConfigs .kotlinCompilerExtensionVersion
51
51
}
52
- lint {
52
+ lintOptions {
53
53
isAbortOnError = false
54
54
}
55
55
packagingOptions {
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ buildscript {
5
5
jcenter()
6
6
}
7
7
dependencies {
8
- classpath(" com.android.tools.build:gradle:7.1.0-alpha03 " )
9
- classpath(" org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10 " )
8
+ classpath(" com.android.tools.build:gradle:7.1.0-alpha06 " )
9
+ classpath(" org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21 " )
10
10
}
11
11
}
12
12
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ buildscript {
20
20
}
21
21
22
22
dependencies {
23
- classpath(" org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10 " )
23
+ classpath(" org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21 " )
24
24
}
25
25
}
26
26
@@ -33,11 +33,11 @@ repositories {
33
33
34
34
dependencies {
35
35
// in order to be able to use "kotlin-android" in the common script
36
- implementation(" org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10 " )
36
+ implementation(" org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21 " )
37
37
38
38
// in order to recognize the "plugins" block in the common script
39
- implementation(" com.android.tools.build:gradle:7.1.0-alpha03 " )
39
+ implementation(" com.android.tools.build:gradle:7.1.0-alpha06 " )
40
40
41
41
// in order to recognize the "android" block in the common script
42
- implementation(" com.android.tools.build:gradle-api:7.1.0-alpha03 " )
42
+ implementation(" com.android.tools.build:gradle-api:7.1.0-alpha06 " )
43
43
}
Original file line number Diff line number Diff line change 1
1
package com.guru.composecookbook.build.dependencies
2
2
3
3
internal object Versions {
4
- const val compose = " 1.0.0 "
5
- const val lifecycleViewModelCompose = " 1.0.0-alpha08 "
4
+ const val compose = " 1.0.1 "
5
+ const val lifecycleViewModelCompose = " 1.0.0-alpha07 "
6
6
const val activityCompose = " 1.3.0"
7
7
const val pagingCompose = " 1.0.0-alpha12"
8
8
const val navCompose = " 2.4.0-alpha05"
9
9
const val constraintLayoutCompose = " 1.0.0-beta02"
10
10
const val fontAwesomeCompose = " 1.0.0-beta02"
11
11
const val accompanistCoil = " 0.14.0"
12
12
const val coilCompose = " 1.3.1"
13
- const val kotlin = " 1.5.10 "
13
+ const val kotlin = " 1.5.21 "
14
14
const val coroutines = " 1.5.1"
15
15
const val androidLifecycleGrouped = " 2.3.1"
16
16
const val flinger = " 1.0.5"
You can’t perform that action at this time.
0 commit comments