From a5713a9289640c48f2b089838fccdd8845a0fff3 Mon Sep 17 00:00:00 2001 From: Lukas Geiger Date: Tue, 12 Apr 2022 16:26:51 +0100 Subject: [PATCH] Fix Java build Not sure if we should rather set `--incompatible_disallow_resource_jars=false` but this seems to work well. For more info see https://github.com/bazelbuild/bazel/issues/13221 --- larq_compute_engine/tflite/java/BUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/larq_compute_engine/tflite/java/BUILD b/larq_compute_engine/tflite/java/BUILD index e067b4b44..9d2ac4aae 100644 --- a/larq_compute_engine/tflite/java/BUILD +++ b/larq_compute_engine/tflite/java/BUILD @@ -31,7 +31,7 @@ android_library( java_library( name = "tensorflowlite_java", - resource_jars = [ + runtime_deps = [ "@org_tensorflow//tensorflow/lite/java:tensorflowlite", ], )