diff options
author | Allan Wang <me@allanwang.ca> | 2017-06-25 21:11:15 -0700 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2017-06-25 21:11:15 -0700 |
commit | b6530cc36d049a292fe52ea21893c5362155a3b7 (patch) | |
tree | b60521096e9c903c8086d4d4c51cd3ae01839f95 /app/build.gradle | |
parent | f35939ce42ca9244468434f93dbd705e02911623 (diff) | |
download | frost-b6530cc36d049a292fe52ea21893c5362155a3b7.tar.gz frost-b6530cc36d049a292fe52ea21893c5362155a3b7.tar.bz2 frost-b6530cc36d049a292fe52ea21893c5362155a3b7.zip |
Hold kau
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/app/build.gradle b/app/build.gradle index f2a6a7c6..5bc879ca 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -70,6 +70,14 @@ android { } } +repositories { + jcenter() + mavenCentral() + maven { url "https://jitpack.io" } + maven { url 'https://maven.google.com' } + maven { url 'https://maven.fabric.io/public' } +} + dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { @@ -77,7 +85,7 @@ dependencies { }) testCompile 'junit:junit:4.12' - compile "ca.allanwang:kau:${KAU}" + compile("ca.allanwang:kau:${KAU}") compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version" @@ -92,15 +100,23 @@ dependencies { 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 "org.greenrobot:eventbus:${EVENTBUS}" //Icons + compile "com.mikepenz:google-material-typeface:${IICON_GOOGLE}.original@aar" compile "com.mikepenz:material-design-iconic-typeface:${IICON_MATERIAL}@aar" compile "com.mikepenz:community-material-typeface:${IICON_COMMUNITY}@aar" + compile "io.reactivex.rxjava2:rxjava:${RX_JAVA}" + compile "io.reactivex.rxjava2:rxandroid:${RX_ANDROID}" +// compile "com.jakewharton.rxbinding2:rxbinding:${RX_BINDING}" +// compile "com.jakewharton.rxbinding2:rxbinding-appcompat-v7:${RX_BINDING}" + compile "org.jsoup:jsoup:${JSOUP}" + compile "org.jetbrains.anko:anko:${ANKO}" + compile "com.github.bumptech.glide:glide:${GLIDE}" annotationProcessor "com.github.bumptech.glide:compiler:${GLIDE}" |