1////////////////////////////////////////////////////////////////// 2// Signed Package 3 4package { 5 default_team: "trendy_team_fwk_nfc", 6 default_applicable_licenses: ["Android-Apache-2.0"], 7} 8 9android_test_import { 10 name: "signed-CtsSecureElementAccessControlTestCases1", 11 apk: "apk/signed-CtsSecureElementAccessControlTestCases1.apk", 12 13 test_suites: [ 14 "cts", 15 "general-tests", 16 ], 17 // Make sure the build system doesn't try to resign the APK 18 preprocessed: true, 19 presigned: true, 20 dex_preopt: { 21 enabled: false, 22 }, 23} 24 25//################################################################# 26// Unsigned Package 27 28android_test_helper_app { 29 name: "CtsSecureElementAccessControlTestCases1", 30 defaults: ["cts_defaults"], 31 static_libs: [ 32 "ctstestrunner-axt", 33 "compatibility-device-util-axt", 34 ], 35 srcs: ["src/**/*.java"], 36 libs: [ 37 "android.test.runner.stubs.test", 38 "android.test.base.stubs.test", 39 ], 40 // Tag this module as a cts test artifact 41 test_suites: [ 42 "cts", 43 "general-tests", 44 ], 45 dist: { 46 targets: ["cts"], 47 }, 48 sdk_version: "test_current", 49} 50