• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
17package {
18    default_applicable_licenses: ["Android-Apache-2.0"],
19}
20
21android_library {
22    name: "live-tv-tuner",
23    srcs: ["src/**/*.java"],
24    sdk_version: "system_current",
25    resource_dirs: ["res"],
26    libs: [
27        "android-support-annotations",
28        "android-support-compat",
29        "android-support-core-ui",
30        "android-support-v7-palette",
31        "android-support-v7-recyclerview",
32        "androidx.leanback_leanback",
33        "androidx.tvprovider_tvprovider",
34        "jsr330",
35        "live-tv-tuner-proto",
36        "tv-auto-value-jar",
37        "tv-auto-factory-jar",
38        "tv-common",
39        "tv-error-prone-annotations-jar",
40        "tv-guava-android-jar",
41        "tv-javax-annotations-jar",
42        "tv-lib-dagger",
43        "tv-lib-exoplayer",
44        "tv-lib-exoplayer-v2-core",
45        "tv-lib-exoplayer-v2-ui",
46        "tv-lib-dagger-android",
47    ],
48    plugins: [
49        "tv-auto-value",
50        "tv-auto-factory",
51        "tv-lib-dagger-android-processor",
52        "tv-lib-dagger-compiler",
53    ],
54    min_sdk_version: "23",
55}
56