diff options
author | Alex Ning <chineseperson5@gmail.com> | 2018-09-22 02:45:38 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2018-09-22 02:45:38 +0000 |
commit | fc356c6505d5ee40e719e5b17e3a8a49ac8128c6 (patch) | |
tree | fa049a14d54251c44b16d9565340f55b8cd3ec3d /app/build.gradle | |
parent | 88e4cf810fa78592c97f6ba7c8c501e75205a76b (diff) | |
download | infinity-for-reddit-fc356c6505d5ee40e719e5b17e3a8a49ac8128c6.tar infinity-for-reddit-fc356c6505d5ee40e719e5b17e3a8a49ac8128c6.tar.gz infinity-for-reddit-fc356c6505d5ee40e719e5b17e3a8a49ac8128c6.tar.bz2 infinity-for-reddit-fc356c6505d5ee40e719e5b17e3a8a49ac8128c6.tar.lz infinity-for-reddit-fc356c6505d5ee40e719e5b17e3a8a49ac8128c6.tar.xz infinity-for-reddit-fc356c6505d5ee40e719e5b17e3a8a49ac8128c6.tar.zst infinity-for-reddit-fc356c6505d5ee40e719e5b17e3a8a49ac8128c6.zip |
Disable the animation for finishing activity in ViewImageActivity and ViewVideoActivity. Fixed a bug that occurred when parsing posts finishes but the PostFragment is not added in any Activity (e.g. Activity finishes).
Diffstat (limited to '')
-rw-r--r-- | app/build.gradle | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app/build.gradle b/app/build.gradle index 4e9b7644..6286dcd4 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -29,10 +29,10 @@ repositories { dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') - implementation 'com.android.support:appcompat-v7:28.0.0-rc01' - implementation 'com.android.support:design:28.0.0-rc01' - implementation 'com.android.support.constraint:constraint-layout:1.1.2' - implementation 'com.android.support:support-v4:28.0.0-rc01' + implementation 'com.android.support:appcompat-v7:28.0.0' + implementation 'com.android.support:design:28.0.0' + implementation 'com.android.support.constraint:constraint-layout:1.1.3' + implementation 'com.android.support:support-v4:28.0.0' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' @@ -40,9 +40,9 @@ dependencies { implementation 'de.hdodenhof:circleimageview:2.2.0' implementation 'com.google.android.exoplayer:exoplayer:2.7.0' implementation 'com.google.android.exoplayer:exoplayer-dash:2.7.0' - implementation 'com.android.support:customtabs:28.0.0-rc01' + implementation 'com.android.support:customtabs:28.0.0' implementation 'com.alexvasilkov:gesture-views:2.5.2' - implementation 'com.android.support:cardview-v7:28.0.0-rc01' + implementation 'com.android.support:cardview-v7:28.0.0' implementation 'com.github.bumptech.glide:glide:4.7.1' implementation 'com.github.pwittchen:swipe-rx2:0.3.0' annotationProcessor 'com.github.bumptech.glide:compiler:4.7.1' |