Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaljurand committed Aug 13, 2023
1 parent 695fe25 commit 4997700
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions app/build.gradle
Expand Up @@ -6,10 +6,10 @@ dependencies {
// TODO: used only in ChunkedWebRecSessionResult, use Android's JSON library instead
implementation 'com.googlecode.json-simple:json-simple:1.1'
implementation 'com.koushikdutta.async:androidasync:3.1.0'
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.8.10'
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.8.21'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.preference:preference-ktx:1.2.0'
implementation 'androidx.recyclerview:recyclerview:1.3.0'
implementation 'androidx.preference:preference-ktx:1.2.1'
implementation 'androidx.recyclerview:recyclerview:1.3.1'
// implementation 'androidx.activity:activity:1.4.0'
implementation 'androidx.dynamicanimation:dynamicanimation:1.0.0'
implementation 'com.google.android.material:material:1.9.0'
Expand All @@ -18,7 +18,7 @@ dependencies {
}

android {
compileSdkVersion rootProject.compileSdkVersion
compileSdk rootProject.compileSdk

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

compileOptions {
Expand Down Expand Up @@ -89,7 +89,7 @@ if (project.hasProperty('storePassword') && project.hasProperty('keyPassword'))
}


task deploy {
tasks.register('deploy') {
// TODO: temporary fix for the issue with accessing the android-property from doLast
notCompatibleWithConfigurationCache("https://docs.gradle.org/current/userguide/configuration_cache.html")
doLast {
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Expand Up @@ -4,8 +4,8 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.2'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0'
classpath 'com.android.tools.build:gradle:8.1.0'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.21'
}
}

Expand All @@ -18,5 +18,5 @@ allprojects {
}

ext {
compileSdkVersion = 33
compileSdk = 33
}
4 changes: 2 additions & 2 deletions other.gradle
@@ -1,4 +1,4 @@
task makeIcons {
tasks.register('makeIcons') {
doLast {
description 'Converts the SVG launcher icon to multiple resolution PNGs'

Expand Down Expand Up @@ -32,7 +32,7 @@ task makeIcons {
}
}

task makeDiagrams {
tasks.register('makeDiagrams') {
doLast {
description 'Converts dot to SVG'

Expand Down
2 changes: 1 addition & 1 deletion speechutils
Submodule speechutils updated 1 files
+1 −1 app/build.gradle

0 comments on commit 4997700

Please sign in to comment.