Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaljurand committed Apr 18, 2021
1 parent f469d3b commit f698d08
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ apply plugin: 'kotlin-android'

dependencies {
implementation project(':speechutils:app')
// TODO: use Android's JSON library instead
// 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-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.preference:preference:1.1.1'
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'androidx.recyclerview:recyclerview:1.2.0'
// implementation 'androidx.activity:activity:1.3.0-alpha03'
implementation 'androidx.dynamicanimation:dynamicanimation:1.0.0'
implementation 'com.google.android.material:material:1.3.0'
Expand All @@ -27,8 +27,8 @@ android {
applicationId 'ee.ioc.phon.android.speak'
minSdkVersion 21
targetSdkVersion 30
versionCode 1761
versionName '1.7.61'
versionCode 1762
versionName '1.7.62'
vectorDrawables.useSupportLibrary = true
// Keep only en and et resources
resConfigs "en", "et"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
public class RecognitionServiceWsUrlActivity extends AppCompatActivity {

private static final int TIMEOUT_PING = 100;
private List<String> mList = new ArrayList<>();
private final List<String> mList = new ArrayList<>();
private ServerAdapter mAdapter;
private Button mBScan;
private TextView mTvServerStatus;
Expand Down Expand Up @@ -255,10 +255,10 @@ protected void onCancelled(String errorMessage) {
}

private class ServerAdapter extends RecyclerView.Adapter<ServerAdapter.MyViewHolder> {
private List<String> mDataset;
private final List<String> mDataset;

private class MyViewHolder extends RecyclerView.ViewHolder {
private Button mView;
private final Button mView;

private MyViewHolder(Button v) {
super(v);
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
buildscript {
ext.kotlin_version = '1.4.31'
ext.kotlin_version = '1.4.32'
repositories {
google()
jcenter()
Expand Down

0 comments on commit f698d08

Please sign in to comment.