diff options
Diffstat (limited to 'java/app_test.go')
-rw-r--r-- | java/app_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/java/app_test.go b/java/app_test.go index 7e461bcb0..fc8cf8e90 100644 --- a/java/app_test.go +++ b/java/app_test.go @@ -399,18 +399,21 @@ func TestAndroidResources(t *testing.T) { android_library { name: "lib", + sdk_version: "current", resource_dirs: ["lib/res"], static_libs: ["lib2"], } android_library { name: "lib2", + sdk_version: "current", resource_dirs: ["lib2/res"], } // This library has the same resources as lib (should not lead to dupe RROs) android_library { name: "lib3", + sdk_version: "current", resource_dirs: ["lib/res"] } ` |