diff options
author | Samuel Holland <samuel@sholland.org> | 2018-09-05 20:17:14 -0500 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-12-08 02:39:41 +0100 |
commit | d1e85633fbe8d871355d2b9feb51e2c9983d8a21 (patch) | |
tree | d95ad1ae84d02fc3e18a211aa1e1ef8150d8fa35 /app/build.gradle | |
parent | a264f7ab36bf1335999d53cb4a0d753c54b231d0 (diff) |
Remodel the Model
- The configuration and crypto model is now entirely independent
of Android classes other than Nullable and TextUtils.
- Model classes are immutable and use builders that enforce the
appropriate optional/required attributes.
- The Android config proxies (for Parcelable and databinding) are
moved to the Android side of the codebase, and are designed to be
safe for two-way databinding. This allows proper observability in
TunnelDetailFragment.
- Various robustness fixes and documentation updates to helper classes.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/app/build.gradle b/app/build.gradle index fb30d2a2..f0ed927c 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -65,12 +65,13 @@ android { } ext { + acraVersion = '5.2.0-rc2' databindingVersion = '3.1.3' - supportLibsVersion = '27.1.1' - streamsupportVersion = '1.6.0' jsr305Version = '3.0.2' + streamsupportVersion = '1.6.0' + supportLibsVersion = '28.0.0' + threetenabpVersion = '1.1.1' zxingEmbeddedVersion = '3.6.0' - acraVersion = '5.2.0-rc2' } dependencies { @@ -81,6 +82,7 @@ dependencies { implementation "com.android.support:preference-v14:$supportLibsVersion" implementation "com.android.support:support-annotations:$supportLibsVersion" implementation "com.google.code.findbugs:jsr305:$jsr305Version" + implementation "com.jakewharton.threetenabp:threetenabp:$threetenabpVersion" implementation "com.journeyapps:zxing-android-embedded:$zxingEmbeddedVersion" implementation "net.sourceforge.streamsupport:android-retrofuture:$streamsupportVersion" implementation "net.sourceforge.streamsupport:android-retrostreams:$streamsupportVersion" |