1/*
2 * Copyright 2019 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17apex_key {
18    name: "com.android.neuralnetworks.key",
19    public_key: "com.android.neuralnetworks.avbpubkey",
20    private_key: "com.android.neuralnetworks.pem",
21}
22
23android_app_certificate {
24    name: "com.android.neuralnetworks.certificate",
25    certificate: "com.android.neuralnetworks",
26}
27
28filegroup {
29    name: "com.android.neuralnetworks-androidManifest",
30    srcs: ["AndroidManifest.xml"],
31}
32
33apex_defaults {
34    name: "com.android.neuralnetworks-defaults",
35    updatable: true,
36    min_sdk_version: "R",
37    androidManifest: ":com.android.neuralnetworks-androidManifest",
38    native_shared_libs: ["libneuralnetworks"],
39    compile_multilib: "both",
40    key: "com.android.neuralnetworks.key",
41    certificate: ":com.android.neuralnetworks.certificate",
42}
43
44apex {
45    name: "com.android.neuralnetworks",
46    defaults: ["com.android.neuralnetworks-defaults"],
47    manifest: "manifest.json",
48}
49