Skip to content

Commit 3ae0590

Browse files
committedAug 14, 2021
Update dependencies, done by Android Studio 2020.3.1
Regression: in Languages&Services (aka the Combo selector) one now needs to click exactly on the checkbox to toggle it. (Before, one could click anywhere on the list item.) Reason: lint did not pass unless android:onClick="onClicked" was removed.
1 parent 8a86d6e commit 3ae0590

File tree

6 files changed

+8
-10
lines changed

6 files changed

+8
-10
lines changed
 

‎app/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ dependencies {
77
implementation 'com.googlecode.json-simple:json-simple:1.1'
88
implementation 'com.koushikdutta.async:androidasync:3.1.0'
99
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
10-
implementation 'androidx.appcompat:appcompat:1.3.0'
10+
implementation 'androidx.appcompat:appcompat:1.3.1'
1111
implementation 'androidx.preference:preference:1.1.1'
1212
implementation 'androidx.recyclerview:recyclerview:1.2.1'
1313
// implementation 'androidx.activity:activity:1.3.0-alpha03'
1414
implementation 'androidx.dynamicanimation:dynamicanimation:1.0.0'
15-
implementation 'com.google.android.material:material:1.3.0'
15+
implementation 'com.google.android.material:material:1.4.0'
1616
}
1717

1818
android {
@@ -27,8 +27,8 @@ android {
2727
applicationId 'ee.ioc.phon.android.speak'
2828
minSdkVersion 21
2929
targetSdkVersion 30
30-
versionCode 1805
31-
versionName '1.8.05'
30+
versionCode 1806
31+
versionName '1.8.06'
3232
vectorDrawables.useSupportLibrary = true
3333
// Keep only en and et resources
3434
resConfigs "en", "et"

‎app/src/main/res/layout/list_item_combo.xml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
33
android:layout_width="match_parent"
44
android:layout_height="wrap_content"
5-
android:onClick="onClicked"
65
android:padding="@dimen/layoutMargin1">
76

87
<TextView

‎build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
buildscript {
2-
ext.kotlin_version = '1.5.20'
2+
ext.kotlin_version = '1.5.21'
33
repositories {
44
google()
55
mavenCentral()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:4.2.1'
8+
classpath 'com.android.tools.build:gradle:7.0.0'
99
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1010
}
1111
}

‎gradle.properties

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
android.enableD8=true
21
android.enableJetifier=true
32
android.useAndroidX=true

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

‎speechutils

0 commit comments

Comments
 (0)
Failed to load comments.