Skip to content

Commit c325c6a

Browse files
committedJan 1, 2023
Update dependencies
1 parent a82a125 commit c325c6a

File tree

5 files changed

+15
-17
lines changed

5 files changed

+15
-17
lines changed
 

‎app/build.gradle

+11-11
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ 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-jdk7:$kotlin_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'
1212
implementation 'androidx.recyclerview:recyclerview:1.2.1'
1313
// implementation 'androidx.activity:activity:1.4.0'
1414
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'
1618
}
1719

1820
android {
@@ -27,8 +29,8 @@ android {
2729
applicationId 'ee.ioc.phon.android.speak'
2830
minSdkVersion 21
2931
targetSdkVersion 33
30-
versionCode 1815
31-
versionName '1.8.15'
32+
versionCode 1816
33+
versionName '1.8.16'
3234
vectorDrawables.useSupportLibrary = true
3335
// Keep only en and et resources
3436
resConfigs 'en', 'et'
@@ -50,8 +52,7 @@ android {
5052

5153

5254
signingConfigs {
53-
release {
54-
}
55+
release {}
5556
}
5657

5758
buildTypes {
@@ -73,12 +74,11 @@ android {
7374
//check 'Interoperability'
7475
disable 'ResourceType', 'AppLinkUrlError', 'EllipsizeMaxLines', 'RtlSymmetry', 'Autofill', 'QueryAllPackagesPermission'
7576
}
76-
77+
namespace 'ee.ioc.phon.android.speak'
7778
}
7879

7980

80-
if (project.hasProperty('storePassword') &&
81-
project.hasProperty('keyPassword')) {
81+
if (project.hasProperty('storePassword') && project.hasProperty('keyPassword')) {
8282
android.signingConfigs.release.storeFile = file(System.getenv("KEYSTORE"))
8383
android.signingConfigs.release.keyAlias = System.getenv("KEY_ALIAS")
8484
android.signingConfigs.release.storePassword = storePassword

‎app/src/main/AndroidManifest.xml

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="ee.ioc.phon.android.speak"
43
android:installLocation="auto">
54

65
<!-- Permission RECORD_AUDIO.

‎build.gradle

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
buildscript {
2-
ext.kotlin_version = '1.7.10'
32
repositories {
43
google()
54
mavenCentral()
65
}
76
dependencies {
8-
classpath 'com.android.tools.build:gradle:7.2.2'
9-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
7+
classpath 'com.android.tools.build:gradle:7.3.1'
8+
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20'
109
}
1110
}
1211

‎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-7.3.3-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip

0 commit comments

Comments
 (0)
Failed to load comments.