diff options
author | Samuel Holland <samuel@sholland.org> | 2018-01-01 02:06:37 -0600 |
---|---|---|
committer | Samuel Holland <samuel@sholland.org> | 2018-01-06 04:09:29 -0600 |
commit | 609194fae2332e6f2ccd7a4464bfa492ad661a6f (patch) | |
tree | 96a7cd9846a093dfcdacfef285b0a4d77000edf0 /app/build.gradle | |
parent | 4c0869393e2d8f52b9bcf312286dca8ced2e1900 (diff) |
Serviceless rewrite, part 1
Signed-off-by: Samuel Holland <samuel@sholland.org>
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle index d022c16b..4620cfcd 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -31,6 +31,20 @@ android { } dependencies { + annotationProcessor 'com.google.dagger:dagger-compiler:2.14.1' + implementation 'com.android.databinding:library:1.3.3' + implementation 'com.android.support:support-annotations:27.0.2' + implementation 'com.commonsware.cwac:crossport:0.2.1' + implementation 'com.gabrielittner.threetenbp:lazythreetenbp:0.2.0' implementation 'com.getbase:floatingactionbutton:1.10.1' + implementation 'com.google.dagger:dagger:2.14.1' + implementation 'net.sourceforge.streamsupport:android-retrofuture:1.6.0' + implementation 'net.sourceforge.streamsupport:android-retrostreams:1.6.0' implementation fileTree(dir: 'libs', include: ['*.jar']) } + +repositories { + maven { + url "https://s3.amazonaws.com/repo.commonsware.com" + } +} |