Skip to content

Commit 4997700

Browse files
committedAug 13, 2023
Update dependencies
1 parent 695fe25 commit 4997700

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed
 

‎app/build.gradle

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ dependencies {
66
// TODO: used only in ChunkedWebRecSessionResult, use Android's JSON library instead
77
implementation 'com.googlecode.json-simple:json-simple:1.1'
88
implementation 'com.koushikdutta.async:androidasync:3.1.0'
9-
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.8.10'
9+
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.8.21'
1010
implementation 'androidx.appcompat:appcompat:1.6.1'
11-
implementation 'androidx.preference:preference-ktx:1.2.0'
12-
implementation 'androidx.recyclerview:recyclerview:1.3.0'
11+
implementation 'androidx.preference:preference-ktx:1.2.1'
12+
implementation 'androidx.recyclerview:recyclerview:1.3.1'
1313
// implementation 'androidx.activity:activity:1.4.0'
1414
implementation 'androidx.dynamicanimation:dynamicanimation:1.0.0'
1515
implementation 'com.google.android.material:material:1.9.0'
@@ -18,7 +18,7 @@ dependencies {
1818
}
1919

2020
android {
21-
compileSdkVersion rootProject.compileSdkVersion
21+
compileSdk rootProject.compileSdk
2222

2323
// API level 3: some default button was not found, but we didn't explore it further.
2424
// API level 7: MediaRecorder.AudioSource.VOICE_RECOGNITION
@@ -33,7 +33,7 @@ android {
3333
versionName '1.9.07'
3434
vectorDrawables.useSupportLibrary = true
3535
// Keep only en and et resources
36-
resConfigs 'en', 'et'
36+
resourceConfigurations += ['en', 'et']
3737
}
3838

3939
compileOptions {
@@ -89,7 +89,7 @@ if (project.hasProperty('storePassword') && project.hasProperty('keyPassword'))
8989
}
9090

9191

92-
task deploy {
92+
tasks.register('deploy') {
9393
// TODO: temporary fix for the issue with accessing the android-property from doLast
9494
notCompatibleWithConfigurationCache("https://docs.gradle.org/current/userguide/configuration_cache.html")
9595
doLast {

‎build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ buildscript {
44
mavenCentral()
55
}
66
dependencies {
7-
classpath 'com.android.tools.build:gradle:8.0.2'
8-
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0'
7+
classpath 'com.android.tools.build:gradle:8.1.0'
8+
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.21'
99
}
1010
}
1111

@@ -18,5 +18,5 @@ allprojects {
1818
}
1919

2020
ext {
21-
compileSdkVersion = 33
21+
compileSdk = 33
2222
}

‎other.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
task makeIcons {
1+
tasks.register('makeIcons') {
22
doLast {
33
description 'Converts the SVG launcher icon to multiple resolution PNGs'
44

@@ -32,7 +32,7 @@ task makeIcons {
3232
}
3333
}
3434

35-
task makeDiagrams {
35+
tasks.register('makeDiagrams') {
3636
doLast {
3737
description 'Converts dot to SVG'
3838

‎speechutils

0 commit comments

Comments
 (0)
Failed to load comments.