summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2018-06-14 14:35:23 -0700
committerandroid-build-merger <android-build-merger@google.com>2018-06-14 14:35:23 -0700
commit69593159183524d6b30ca1970827f9d694463d40 (patch)
treee52802f49ab04154318a3f7b7dc10662a8a86c23
parent12c65b2f3ac6c5d44a27c945a672a848429276bf (diff)
parentfc08479c32c00d977134f057fde2631682e598df (diff)
downloadandroidplot-69593159183524d6b30ca1970827f9d694463d40.tar.gz
Androidplot: Suppress MissingOverride am: d8ab4d46ec
am: fc08479c32 Change-Id: Iff5ff2b1e8ef58b9992ef0c08a87cb2464045cdd
-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)