aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
authorAlex Ning <chineseperson5@gmail.com>2018-07-29 12:25:55 +0000
committerAlex Ning <chineseperson5@gmail.com>2018-07-29 12:25:55 +0000
commitddc7b36e72dee19b87204beacc8322ca221b5524 (patch)
treed3e6475c0e135d732b0d2591142113c88898a491 /app/build.gradle
parente3653eb503f4396903bcdd1423510f7c4893dde9 (diff)
downloadinfinity-for-reddit-ddc7b36e72dee19b87204beacc8322ca221b5524.tar
infinity-for-reddit-ddc7b36e72dee19b87204beacc8322ca221b5524.tar.gz
infinity-for-reddit-ddc7b36e72dee19b87204beacc8322ca221b5524.tar.bz2
infinity-for-reddit-ddc7b36e72dee19b87204beacc8322ca221b5524.tar.lz
infinity-for-reddit-ddc7b36e72dee19b87204beacc8322ca221b5524.tar.xz
infinity-for-reddit-ddc7b36e72dee19b87204beacc8322ca221b5524.tar.zst
infinity-for-reddit-ddc7b36e72dee19b87204beacc8322ca221b5524.zip
Save subscribed subreddits and users to the SQLite database by using Room Persistence Library. Add a following section in the navigation drawer to display all the followed users. Add a NestedScrollView in the navigation drawer to wrap all the elements. Disable nested scrolling feature in all the RecyclerViews in the navigation drawer.
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle17
1 files changed, 12 insertions, 5 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 0d69fae8..95becfb6 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -28,10 +28,10 @@ repositories {
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
- implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
- implementation 'com.android.support:design:28.0.0-alpha3'
+ implementation 'com.android.support:appcompat-v7:28.0.0-beta01'
+ implementation 'com.android.support:design:28.0.0-beta01'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
- implementation 'com.android.support:support-v4:28.0.0-alpha3'
+ implementation 'com.android.support:support-v4:28.0.0-beta01'
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'
@@ -39,10 +39,17 @@ 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-alpha3'
+ implementation 'com.android.support:customtabs:28.0.0-beta01'
implementation 'com.alexvasilkov:gesture-views:2.5.2'
- implementation 'com.android.support:cardview-v7:28.0.0-alpha3'
+ implementation 'com.android.support:cardview-v7:28.0.0-beta01'
implementation 'com.github.bumptech.glide:glide:4.6.1'
implementation 'com.github.pwittchen:swipe-rx2:0.3.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.6.1'
+ // Room components
+ implementation "android.arch.persistence.room:runtime:$rootProject.roomVersion"
+ annotationProcessor "android.arch.persistence.room:compiler:$rootProject.roomVersion"
+ androidTestImplementation "android.arch.persistence.room:testing:$rootProject.roomVersion"
+ // Lifecycle components
+ implementation "android.arch.lifecycle:extensions:$rootProject.archLifecycleVersion"
+ annotationProcessor "android.arch.lifecycle:compiler:$rootProject.archLifecycleVersion"
}