summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2018-06-14 11:03:37 -0700
committerAndreas Gampe <agampe@google.com>2018-06-14 11:03:37 -0700
commitd8ab4d46ec81cb669261e826aee1c7c6b52c06e2 (patch)
treefa36c4b37b4475d0b43fdcdb814df35b32607041
parentb9aa10c308704a8ce53ec7249bb3230d10227f75 (diff)
downloadandroidplot-d8ab4d46ec81cb669261e826aee1c7c6b52c06e2.tar.gz
Bug: 73499927 Test: m javac-check RUN_ERROR_PRONE=true Change-Id: Ie7d43b7d4594e10993688cbfced66f5fd5f1fd8e
-rw-r--r--Android.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index 36faf42..964d408 100644
--- a/Android.mk
+++ b/Android.mk
@@ -24,6 +24,9 @@ LOCAL_SDK_VERSION := current
LOCAL_SRC_FILES := $(call all-java-files-under, AndroidPlot-Core/src/main)
+# b/73499927
+LOCAL_ERROR_PRONE_FLAGS := -Xep:MissingOverride:OFF
+
include ${BUILD_STATIC_JAVA_LIBRARY}
## Demo app
@@ -40,4 +43,7 @@ LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/Examples/DemoApp/res
LOCAL_MANIFEST_FILE := Examples/DemoApp/AndroidManifest.xml
LOCAL_SRC_FILES := $(call all-java-files-under, Examples/DemoApp/src)
+# b/73499927
+LOCAL_ERROR_PRONE_FLAGS := -Xep:MissingOverride:OFF
+
include $(BUILD_PACKAGE)