Skip to content

Commit 0f16fe0

Browse files
committedDec 1, 2024
Target API 35 and update dependencies
1 parent 47170ad commit 0f16fe0

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed
 

‎app/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ 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.9.20'
9+
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.9.24'
1010
implementation 'androidx.appcompat:appcompat:1.7.0'
1111
implementation 'androidx.preference:preference-ktx:1.2.1'
1212
implementation 'androidx.recyclerview:recyclerview:1.3.2'
@@ -26,9 +26,9 @@ android {
2626
defaultConfig {
2727
applicationId 'ee.ioc.phon.android.speak'
2828
minSdkVersion 24
29-
targetSdkVersion 34
30-
versionCode 1916
31-
versionName '1.9.16'
29+
targetSdkVersion 35
30+
versionCode 1917
31+
versionName '1.9.17'
3232
vectorDrawables.useSupportLibrary = true
3333
// Keep only en and et resources
3434
resourceConfigurations += ['en', 'et']

‎app/src/main/res/values/styles.xml

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
<style name="Theme.K6nele" parent="Theme.AppCompat.DayNight">
55
<item name="colorAccent">@color/accent</item>
6+
<item name="android:windowFullscreen">false</item>
7+
<item name="android:fitsSystemWindows">true</item>
68
</style>
79

810
<!--

‎build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ buildscript {
44
mavenCentral()
55
}
66
dependencies {
7-
classpath 'com.android.tools.build:gradle:8.5.2'
7+
classpath 'com.android.tools.build:gradle:8.7.2'
88
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.20'
99
}
1010
}
@@ -18,5 +18,5 @@ allprojects {
1818
}
1919

2020
ext {
21-
compileSdk = 34
21+
compileSdk = 35
2222
}

‎gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip

‎speechutils

0 commit comments

Comments
 (0)
Failed to load comments.