1//
2// Copyright (C) 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
17android_app {
18    name: "sampletunertvinput",
19    srcs: ["src/**/*.java"],
20
21    optimize: {
22        enabled: false,
23    },
24
25    platform_apis: true,
26    system_ext_specific: true,
27
28
29    privileged: true,
30    certificate: "platform",
31    // product_specific: true,
32    // sdk_version: "system_current",
33    resource_dirs: ["res"],
34    static_libs: [
35        "android-support-annotations",
36        "android-support-compat",
37        "android-support-core-ui",
38        "android-support-v7-palette",
39        "android-support-v7-recyclerview",
40        "androidx.leanback_leanback",
41        "androidx.tvprovider_tvprovider",
42        "jsr330",
43        "live-tv-tuner-proto",
44        "tv-auto-value-jar",
45        "tv-auto-factory-jar",
46        "tv-common",
47        "tv-error-prone-annotations-jar",
48        "tv-guava-android-jar",
49        "tv-javax-annotations-jar",
50        "tv-lib-dagger",
51        "tv-lib-exoplayer",
52        "tv-lib-exoplayer-v2-core",
53        "tv-lib-dagger-android",
54        "tv-test-common",
55    ],
56    aaptflags: ["-0 .ts"],
57    plugins: [
58        "tv-auto-value",
59        "tv-auto-factory",
60    ],
61    // min_sdk_version: "29",
62}
63