Skip to content

Commit 35a73c2

Browse files
committed
chore: update AGP, kotlin, compose
1 parent 24213bf commit 35a73c2

File tree

17 files changed

+247
-185
lines changed

17 files changed

+247
-185
lines changed

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ captures/
5454
.idea/modules.xml
5555
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
5656
.idea/navEditor.xml
57+
.idea/androidTestResultsUserPreferences.xml
58+
.idea/kotlinc.xml
5759

5860
# Keystore files
5961
# Uncomment the following lines if you do not want to check your keystore files in.
@@ -103,7 +105,8 @@ output.json
103105
.LSOverride
104106

105107
# Icon must end with two \r
106-
Icon
108+
Icon
109+
107110

108111
# Thumbnails
109112
._*

.idea/compiler.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+1-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
33
ext {
4-
kotlin_version = "1.5.31"
5-
roboelectric = "4.6.1"
4+
kotlin_version = '1.8.21'
5+
roboelectric = "4.10.3"
66
buildConfig = [
7-
'compileSdk': 31,
7+
'compileSdk': 33,
88
'minSdk' : 23,
9-
'targetSdk' : 31,
9+
'targetSdk' : 33,
1010
]
11-
compose_version = '1.0.5'
1211
}
1312
repositories {
1413
google()
1514
mavenCentral()
1615
}
1716
dependencies {
18-
classpath 'com.android.tools.build:gradle:7.0.3'
17+
classpath 'com.android.tools.build:gradle:8.0.2'
1918
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2019

2120
// NOTE: Do not place your application dependencies here; they belong

gradle.properties

+4-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,7 @@ android.useAndroidX=true
1818
# Automatically convert third-party libraries to use AndroidX
1919
android.enableJetifier=true
2020
# Kotlin code style for this project: "official" or "obsolete":
21-
kotlin.code.style=official
21+
kotlin.code.style=official
22+
android.defaults.buildfeatures.buildconfig=true
23+
android.nonTransitiveRClass=true
24+
android.nonFinalResIds=false

gradle/wrapper/gradle-wrapper.jar

5.08 KB
Binary file not shown.
+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Wed May 19 20:06:13 CEST 2021
21
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
42
distributionPath=wrapper/dists
5-
zipStorePath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-bin.zip
64
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)