From ffa908d8a06f9b3ee5b488d2c5142da233d562ac Mon Sep 17 00:00:00 2001 From: Eric Kuck Date: Thu, 12 Jul 2018 19:10:35 -0500 Subject: global: Add nullity annotations Signed-off-by: Eric Kuck --- app/build.gradle | 3 +++ 1 file changed, 3 insertions(+) (limited to 'app/build.gradle') 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) { -- cgit v1.2.3-59-g8ed1b