96 lines
2.9 KiB
Groovy
96 lines
2.9 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'org.jetbrains.kotlin.android'
|
|
id 'kotlin-kapt'
|
|
id 'kotlin-parcelize'
|
|
}
|
|
|
|
android {
|
|
namespace 'com.example.tvmon'
|
|
compileSdk 34
|
|
|
|
defaultConfig {
|
|
applicationId "com.example.tvmon"
|
|
minSdk 28
|
|
targetSdk 34
|
|
versionCode 9
|
|
versionName "1.0.8"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
signingConfigs {
|
|
release {
|
|
storeFile file('tvmon-release.keystore')
|
|
storePassword 'tvmon1234'
|
|
keyAlias 'tvmon'
|
|
keyPassword 'tvmon1234'
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
signingConfig signingConfigs.release
|
|
}
|
|
debug {
|
|
minifyEnabled false
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = '17'
|
|
}
|
|
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.core:core-ktx:1.12.0'
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
implementation 'androidx.leanback:leanback:1.0.0'
|
|
implementation 'androidx.leanback:leanback-preference:1.0.0'
|
|
implementation 'androidx.tv:tv-foundation:1.0.0-alpha10'
|
|
implementation 'androidx.tv:tv-material:1.0.0-alpha10'
|
|
implementation 'com.google.android.material:material:1.11.0'
|
|
|
|
// LeakCanary for memory leak detection (TV-optimized with Toast notifications)
|
|
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.14'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.7.0'
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0'
|
|
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.7.0'
|
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3'
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3'
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:4.12.0'
|
|
|
|
implementation 'org.jsoup:jsoup:1.17.2'
|
|
|
|
implementation 'com.github.bumptech.glide:glide:4.16.0'
|
|
kapt 'com.github.bumptech.glide:compiler:4.16.0'
|
|
|
|
implementation 'androidx.room:room-runtime:2.6.1'
|
|
implementation 'androidx.room:room-ktx:2.6.1'
|
|
kapt 'androidx.room:room-compiler:2.6.1'
|
|
|
|
implementation 'io.insert-koin:koin-android:3.5.3'
|
|
implementation 'io.insert-koin:koin-androidx-compose:3.5.3'
|
|
implementation 'io.insert-koin:koin-core:3.5.3'
|
|
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
|
|
}
|