diff options
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/app/build.gradle b/app/build.gradle index 92167ac7..4fffb72c 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,13 +1,12 @@ apply plugin: 'com.android.application' apply plugin: 'kotlin-android' -apply plugin: 'realm-android' android { compileSdkVersion Integer.parseInt(project.TARGET_SDK) buildToolsVersion project.BUILD_TOOLS defaultConfig { - applicationId "${project.APP_GROUP}." + project.APP_ID.toLowerCase() + ".sample" + applicationId "${project.APP_GROUP}." + project.APP_ID.toLowerCase() minSdkVersion Integer.parseInt(project.MIN_SDK) targetSdkVersion Integer.parseInt(project.TARGET_SDK) versionCode Integer.parseInt(project.VERSION_CODE) @@ -57,6 +56,18 @@ dependencies { //Dialog compile "com.afollestad.material-dialogs:core:${MD}" + compile "com.github.Raizlabs.DBFlow:dbflow:${DBFLOW}" + compile "com.github.Raizlabs.DBFlow:dbflow-core:${DBFLOW}" + annotationProcessor "com.github.Raizlabs.DBFlow:dbflow-processor:${DBFLOW}" + kapt "com.github.Raizlabs.DBFlow:dbflow-processor:${DBFLOW}" + compile "com.github.Raizlabs.DBFlow:dbflow-kotlinextensions:${DBFLOW}" + compile "com.github.Raizlabs.DBFlow:dbflow-rx2:${DBFLOW}" + compile "com.github.Raizlabs.DBFlow:dbflow-rx2-kotlinextensions:${DBFLOW}" + compile "com.github.Raizlabs.DBFlow:dbflow-sqlcipher:${DBFLOW}" + compile "net.zetetic:android-database-sqlcipher:${SQL_CIPHER}@aar" + + testCompile "org.robolectric:robolectric:${ROBOELECTRIC}" + //Icons compile "com.mikepenz:iconics-core:${ICONICS}@aar" compile "com.mikepenz:google-material-typeface:${IICON_GOOGLE}.original@aar" @@ -89,4 +100,12 @@ dependencies { compile "com.github.bumptech.glide:glide:${GLIDE}" annotationProcessor "com.github.bumptech.glide:compiler:${GLIDE}" + + compile "com.google.auto.value:auto-value:${AUTO}" + annotationProcessor "com.google.auto.value:auto-value:${AUTO}" + annotationProcessor "com.ryanharter.auto.value:auto-value-parcel:${AUTO_VALUE_PARCEL}" +} + +kapt { + generateStubs = true } |