1package { 2 // See: http://go/android-license-faq 3 // A large-scale-change added 'default_applicable_licenses' to import 4 // all of the 'license_kinds' from "system_tools_aidl_license" 5 // to get the below license kinds: 6 // SPDX-license-identifier-Apache-2.0 7 default_applicable_licenses: ["system_tools_aidl_license"], 8} 9 10apex_test { 11 name: "com.android.aidltest", 12 manifest: "apex_manifest.json", 13 file_contexts: ":apex.test-file_contexts", 14 key: "com.android.aidltest.key", 15 certificate: ":com.android.aidltest.certificate", 16 installable: false, 17 updatable: false, 18 19 native_shared_libs: [ 20 "test-piece-1-V3-ndk_platform", 21 ], 22} 23 24apex_key { 25 name: "com.android.aidltest.key", 26 public_key: "com.android.aidltest.pubkey", 27 private_key: "com.android.aidltest.pem", 28} 29 30android_app_certificate { 31 name: "com.android.aidltest.certificate", 32 certificate: "com.android.aidltest", 33} 34