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: "SampleDvbTuner", 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 jni_libs: ["libtunertvinput_jni"], 47 48 aaptflags: [ 49 "--version-name", 50 version_name, 51 52 "--version-code", 53 version_code, 54 55 "--extra-packages", 56 "com.android.tv.tuner", 57 58 "--extra-packages", 59 "com.android.tv.common", 60 ], 61} 62