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: "SampleNetworkTuner", 19 20 srcs: ["src/**/*.java"], 21 22 sdk_version: "system_current", 23 min_sdk_version: "23", // M 24 25 resource_dirs: [ 26 "res", 27 ], 28 29 static_libs: [ 30 "live-tv-tuner", 31 "live-tv-tuner-proto", 32 "tv-common", 33 "tv-lib-dagger", 34 "tv-lib-exoplayer", 35 "tv-lib-exoplayer-v2-core", 36 "tv-lib-exoplayer-v2-ui", 37 "tv-lib-dagger-android", 38 "live-channels-partner-support", 39 ], 40 41 plugins: [ 42 "tv-lib-dagger-android-processor", 43 "tv-lib-dagger-compiler", 44 ], 45 46 aaptflags: [ 47 "--version-name", 48 version_name, 49 50 "--version-code", 51 version_code, 52 53 "--extra-packages", 54 "com.android.tv.tuner", 55 56 "--extra-packages", 57 "com.android.tv.common", 58 ], 59} 60