blob: a51bc56ac9c0ab7418b5f5e05cd6360ba6df6884 [file] [log] [blame]
plugins {
id 'com.android.application'
}
android {
compileSdk 31
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
applicationId "com.android.tv.samples.sampletvinteractiveappservice"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode rootProject.ext.versionCode
versionName rootProject.ext.versionName
}
android.applicationVariants.all { variant ->
variant.outputs.all {
outputFileName = "SampleTvInteractiveAppService-v${defaultConfig.versionName}.apk"
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation 'androidx.leanback:leanback:1.0.0'
}