1// Copyright 2019 Google Inc. All rights reserved. 2// 3// Licensed under the Apache License, Version 2.0 (the "License"); 4// you may not use this file except in compliance with the License. 5// You may obtain a copy of the License at 6// 7// http://www.apache.org/licenses/LICENSE-2.0 8// 9// Unless required by applicable law or agreed to in writing, software 10// distributed under the License is distributed on an "AS IS" BASIS, 11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12// See the License for the specific language governing permissions and 13// limitations under the License. 14 15package { 16 default_applicable_licenses: ["Android-Apache-2.0"], 17} 18 19apex_defaults { 20 name: "vndk-apex-defaults", 21 manifest: "apex_manifest.json", 22 key: "com.android.vndk.key", 23 certificate: ":com.android.vndk.certificate", 24 file_contexts: ":com.android.vndk-file_contexts", 25 updatable: false, 26} 27 28apex_key { 29 name: "com.android.vndk.key", 30 public_key: "com.android.vndk.pubkey", 31 private_key: "com.android.vndk.pem", 32} 33 34android_app_certificate { 35 name: "com.android.vndk.certificate", 36 certificate: "com.android.vndk", 37} 38 39apex_vndk { 40 name: "com.android.vndk.v34", 41 defaults: ["vndk-apex-defaults"], 42 vndk_version: "34", 43 system_ext_specific: true, 44} 45 46apex_vndk { 47 name: "com.android.vndk.v33", 48 defaults: ["vndk-apex-defaults"], 49 vndk_version: "33", 50 system_ext_specific: true, 51} 52 53apex_vndk { 54 name: "com.android.vndk.v32", 55 defaults: ["vndk-apex-defaults"], 56 vndk_version: "32", 57 system_ext_specific: true, 58} 59 60apex_vndk { 61 name: "com.android.vndk.v31", 62 defaults: ["vndk-apex-defaults"], 63 vndk_version: "31", 64 system_ext_specific: true, 65} 66 67apex_vndk { 68 name: "com.android.vndk.v30", 69 defaults: ["vndk-apex-defaults"], 70 vndk_version: "30", 71 system_ext_specific: true, 72} 73 74apex_vndk { 75 name: "com.android.vndk.v29", 76 defaults: ["vndk-apex-defaults"], 77 vndk_version: "29", 78 system_ext_specific: true, 79} 80 81