aboutsummaryrefslogtreecommitdiff
path: root/interactive/SampleTvInteractiveAppService/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'interactive/SampleTvInteractiveAppService/build.gradle')
-rw-r--r--interactive/SampleTvInteractiveAppService/build.gradle31
1 files changed, 31 insertions, 0 deletions
diff --git a/interactive/SampleTvInteractiveAppService/build.gradle b/interactive/SampleTvInteractiveAppService/build.gradle
new file mode 100644
index 00000000..a51bc56a
--- /dev/null
+++ b/interactive/SampleTvInteractiveAppService/build.gradle
@@ -0,0 +1,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'
+} \ No newline at end of file