diff options
author | Eric Kuck <eric@bluelinelabs.com> | 2018-07-12 19:10:35 -0500 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-07-13 03:46:23 +0200 |
commit | 67ea8b2936343526ff0b3f476c515f0e11dbb272 (patch) | |
tree | 84f904d66f6111a7d8f897164eb236bc62199cae /app/build.gradle | |
parent | fbaa4d9ab1b59ba4610fe273743872f35e7e9091 (diff) |
global: Add nullity annotations
Signed-off-by: Eric Kuck <eric@bluelinelabs.com>
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle index b0bcc3b6..f63726d3 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,4 +1,5 @@ apply plugin: 'com.android.application' +apply from: 'nonnull.gradle' // Create a variable called keystorePropertiesFile, and initialize it to your // keystore.properties file, in the rootProject folder. @@ -56,6 +57,7 @@ ext { databindingVersion = '3.1.3' supportLibsVersion = '27.1.1' streamsupportVersion = '1.6.0' + jsr305Version = '3.0.2' } dependencies { @@ -67,6 +69,7 @@ dependencies { implementation "com.android.support:support-annotations:$supportLibsVersion" implementation "net.sourceforge.streamsupport:android-retrofuture:$streamsupportVersion" implementation "net.sourceforge.streamsupport:android-retrostreams:$streamsupportVersion" + implementation "com.google.code.findbugs:jsr305:$jsr305Version" } tasks.withType(JavaCompile) { |