aboutsummaryrefslogtreecommitdiff
path: root/interactive/SampleTvInteractiveAppService/build.gradle
blob: a51bc56ac9c0ab7418b5f5e05cd6360ba6df6884 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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'
}