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