diff options
author | Alex Ning <chineseperson5@gmail.com> | 2019-04-18 09:18:19 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2019-04-18 09:18:19 +0000 |
commit | 246d4f45abdbc65976b808c462fb16708869a4dc (patch) | |
tree | 90148258d6ad8d7a14097b77f6649425fb023d31 /app/build.gradle | |
parent | fb525d62ed630c9731a4704ad3b9848b0fc10752 (diff) | |
download | infinity-for-reddit-246d4f45abdbc65976b808c462fb16708869a4dc.tar infinity-for-reddit-246d4f45abdbc65976b808c462fb16708869a4dc.tar.gz infinity-for-reddit-246d4f45abdbc65976b808c462fb16708869a4dc.tar.bz2 infinity-for-reddit-246d4f45abdbc65976b808c462fb16708869a4dc.tar.lz infinity-for-reddit-246d4f45abdbc65976b808c462fb16708869a4dc.tar.xz infinity-for-reddit-246d4f45abdbc65976b808c462fb16708869a4dc.tar.zst infinity-for-reddit-246d4f45abdbc65976b808c462fb16708869a4dc.zip |
Fixed displaying wrong score when rapidly clicking vote buttons in PostRecyclerViewAdapter.
Diffstat (limited to '')
-rw-r--r-- | app/build.gradle | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/build.gradle b/app/build.gradle index 8e175db8..a8524124 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -33,14 +33,14 @@ repositories { dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') - implementation 'androidx.appcompat:appcompat:1.1.0-alpha02' - implementation 'com.google.android.material:material:1.1.0-alpha03' + implementation 'androidx.appcompat:appcompat:1.1.0-alpha04' + implementation 'com.google.android.material:material:1.1.0-alpha05' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'androidx.legacy:legacy-support-v13:1.0.0' testImplementation 'junit:junit:4.12' - androidTestImplementation 'androidx.test:runner:1.1.2-alpha01' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.2-alpha01' + androidTestImplementation 'androidx.test:runner:1.2.0-alpha03' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0-alpha03' implementation 'com.google.android.exoplayer:exoplayer:2.7.0' implementation 'com.google.android.exoplayer:exoplayer-dash:2.7.0' implementation 'androidx.browser:browser:1.0.0' @@ -48,7 +48,7 @@ dependencies { implementation 'androidx.cardview:cardview:1.0.0' implementation 'com.github.bumptech.glide:glide:4.8.0' implementation 'com.github.pwittchen:swipe-rx2:0.3.0' - annotationProcessor 'com.github.bumptech.glide:compiler:4.7.1' + annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0' // Room components implementation "androidx.room:room-runtime:$rootProject.roomVersion" annotationProcessor "androidx.room:room-compiler:$rootProject.roomVersion" |