From b8fd519b1a5d67dad0d541956a3f16813c2d3412 Mon Sep 17 00:00:00 2001 From: Severiano Jaramillo Date: Mon, 15 Oct 2018 12:28:20 -0500 Subject: [PATCH] Added AndroidDebugDatabase library to Crystal, this library makes debugging the database a lot easier. Also updated ConstraintLayout library version. --- app/build.gradle | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 3dfd351..ac1b874 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -30,6 +30,9 @@ android { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } + debug { + resValue("string", "PORT_NUMBER", "8081") + } } productFlavors { @@ -60,7 +63,7 @@ dependencies { implementation 'com.jaredrummler:material-spinner:1.2.5' implementation "org.jetbrains.kotlin:kotlin-stdlib:1.1.60" //testCompile 'com.android.support.test:runner:1.0.1' - implementation 'com.afollestad.material-dialogs:core:0.9.6.0' //DTVV Thrusday 31 July 2018 + implementation 'com.afollestad.material-dialogs:core:0.9.6.0' implementation 'com.android.support:appcompat-v7:27.1.1' implementation 'com.github.bumptech.glide:glide:4.7.1' // Glide v4 uses this new annotation processor -- see https://bumptech.github.io/glide/doc/generatedapi.html @@ -68,7 +71,7 @@ dependencies { implementation 'com.android.support:support-v4:27.1.1' implementation 'com.android.support:design:27.1.1' implementation 'com.android.support:cardview-v7:27.1.1' - implementation 'com.android.support.constraint:constraint-layout:1.1.2' + implementation 'com.android.support.constraint:constraint-layout:1.1.3' implementation 'android.arch.lifecycle:runtime:1.1.1' implementation 'android.arch.lifecycle:extensions:1.1.1' implementation 'android.arch.paging:runtime:1.0.0' @@ -115,4 +118,6 @@ dependencies { kapt "android.arch.lifecycle:compiler:1.1.1" kapt "android.arch.persistence.room:compiler:1.1.0" + + debugImplementation 'com.amitshekhar.android:debug-db:1.0.4' }