Skip to content

Commit 9e376b7

Browse files
committed
[app] updated gradle, kotlin, libraries and tests
1 parent ffd9506 commit 9e376b7

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Android Multimodule Architecture Concepts
22

3+
[![Kotlin](https://img.shields.io/badge/kotlin-1.7.10-blue.svg?logo=kotlin)](http://kotlinlang.org)
4+
[![License](https://img.shields.io/github/license/davide-pani/kotlin-extensions?color=orange)]()
5+
36
_Android Multimodule Architecture Concepts_ is a project to showcase different architectural approaches 🏛 to developing multi-modular Android apps 📱.
47

58
🔎 The architecture proposed consists of 3 different layers:

app/build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ android {
3030
}
3131
kotlinOptions {
3232
jvmTarget = '1.8'
33+
allWarningsAsErrors = true
3334
}
3435
}
3536

build.gradle

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
33
ext {
4-
dagger_version = "2.38.1"
5-
core_ktx_version = "1.7.0"
4+
dagger_version = '2.42'
5+
core_ktx_version = "1.8.0"
66
junit_version = "4.13.2"
7-
appcompat_version = "1.4.1"
8-
material_version = "1.5.0"
7+
appcompat_version = "1.4.2"
8+
material_version = "1.6.1"
99
androidx_junit_version = "1.1.3"
1010
espresso_core_version = "3.4.0"
1111
}
@@ -16,9 +16,9 @@ buildscript {
1616
}
1717

1818
plugins {
19-
id 'com.android.application' version '7.1.3' apply false
20-
id 'com.android.library' version '7.1.3' apply false
21-
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
19+
id 'com.android.application' version '7.2.1' apply false
20+
id 'com.android.library' version '7.2.1' apply false
21+
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
2222
}
2323

2424
task clean(type: Delete) {
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Sun Mar 27 12:43:20 CEST 2022
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)