diff options
Diffstat (limited to 'Software/Android_Studio/Tango.DAL/build.gradle')
| -rw-r--r-- | Software/Android_Studio/Tango.DAL/build.gradle | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/Software/Android_Studio/Tango.DAL/build.gradle b/Software/Android_Studio/Tango.DAL/build.gradle index 066a1efbd..c237ba6e4 100644 --- a/Software/Android_Studio/Tango.DAL/build.gradle +++ b/Software/Android_Studio/Tango.DAL/build.gradle @@ -31,16 +31,28 @@ android { } } -dependencies { - implementation fileTree(dir: 'libs', include: ['*.jar']) +def dbflow_version = "4.1.2" +dependencies { + implementation fileTree(include: ['*.jar'], dir: 'libs') testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.1' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' - //Room - compile 'android.arch.persistence.room:runtime:1.0.0-alpha9' - annotationProcessor 'android.arch.persistence.room:compiler:1.0.0-alpha9' + //DBFlow + compile globalDependencies.rxJavaAndroid + compile globalDependencies.rxJava + annotationProcessor "com.github.Raizlabs.DBFlow:dbflow-processor:${dbflow_version}" + compile "com.github.Raizlabs.DBFlow:dbflow-core:${dbflow_version}" + compile "com.github.Raizlabs.DBFlow:dbflow:${dbflow_version}" + compile "com.github.Raizlabs.DBFlow:dbflow-rx2:${dbflow_version}" + + + implementation project(':Tango.Core') + compile 'com.android.support:support-annotations:25.4.0' + + compile globalDependencies.logging + compile globalDependencies.storage } //Copy data base to assets folder. |
