From 975f9f79ff01ba0e4cdd78a64675a01ad486db04 Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Tue, 17 Oct 2017 13:55:55 -0700 Subject: [PATCH] Allow jarjar_rules to be arch-specific Modules may need to use jarjar on the device to move classes into the android namespace, but not on the host. Test: m checkbuild Change-Id: I910ebbe20e45e98edecca0d7c4fb18e806bc3c6c --- java/java.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/java.go b/java/java.go index 3382cf289..76e574eba 100644 --- a/java/java.go +++ b/java/java.go @@ -100,7 +100,7 @@ type CompilerProperties struct { Manifest *string // if not blank, run jarjar using the specified rules file - Jarjar_rules *string + Jarjar_rules *string `android:"arch_variant"` // If not blank, set the java version passed to javac as -source and -target Java_version *string