@@ -6,13 +6,15 @@ dependencies {
6
6
// TODO: used only in ChunkedWebRecSessionResult, use Android's JSON library instead
7
7
implementation ' com.googlecode.json-simple:json-simple:1.1'
8
8
implementation ' com.koushikdutta.async:androidasync:3.1.0'
9
- implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$k otlin_version "
10
- implementation ' androidx.appcompat:appcompat:1.4.2 '
11
- implementation ' androidx.preference:preference:1.2.0'
9
+ implementation ' org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.20 '
10
+ implementation ' androidx.appcompat:appcompat:1.5.1 '
11
+ implementation ' androidx.preference:preference-ktx :1.2.0'
12
12
implementation ' androidx.recyclerview:recyclerview:1.2.1'
13
13
// implementation 'androidx.activity:activity:1.4.0'
14
14
implementation ' androidx.dynamicanimation:dynamicanimation:1.0.0'
15
- implementation ' com.google.android.material:material:1.6.1'
15
+ implementation ' com.google.android.material:material:1.7.0'
16
+ // Added only to resolve https://issuetracker.google.com/issues/242384116
17
+ implementation ' androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
16
18
}
17
19
18
20
android {
@@ -27,8 +29,8 @@ android {
27
29
applicationId ' ee.ioc.phon.android.speak'
28
30
minSdkVersion 21
29
31
targetSdkVersion 33
30
- versionCode 1815
31
- versionName ' 1.8.15 '
32
+ versionCode 1816
33
+ versionName ' 1.8.16 '
32
34
vectorDrawables. useSupportLibrary = true
33
35
// Keep only en and et resources
34
36
resConfigs ' en' , ' et'
@@ -50,8 +52,7 @@ android {
50
52
51
53
52
54
signingConfigs {
53
- release {
54
- }
55
+ release {}
55
56
}
56
57
57
58
buildTypes {
@@ -73,12 +74,11 @@ android {
73
74
// check 'Interoperability'
74
75
disable ' ResourceType' , ' AppLinkUrlError' , ' EllipsizeMaxLines' , ' RtlSymmetry' , ' Autofill' , ' QueryAllPackagesPermission'
75
76
}
76
-
77
+ namespace ' ee.ioc.phon.android.speak '
77
78
}
78
79
79
80
80
- if (project. hasProperty(' storePassword' ) &&
81
- project. hasProperty(' keyPassword' )) {
81
+ if (project. hasProperty(' storePassword' ) && project. hasProperty(' keyPassword' )) {
82
82
android. signingConfigs. release. storeFile = file(System . getenv(" KEYSTORE" ))
83
83
android. signingConfigs. release. keyAlias = System . getenv(" KEY_ALIAS" )
84
84
android. signingConfigs. release. storePassword = storePassword
0 commit comments