Files
tvmon/tvmon-app/app/build.gradle
tvmon-dev 55c45cd399 v1.0.1 업데이트
- 정렬 순서 wr_datetime DESC로 변경 (최신순 정렬)
- 런처 아이콘 개선 (Netflix 스타일: 빨간 배경 + 흰 아이콘)
- 웹뷰 동영상 재생 최적화 (_LAYER_TYPE_NONE, setInterval 제거)
- 설정 버튼 카테고리 하단 배치
- 메모리 누수 수정 (WebView cleanup)
2026-04-16 15:45:32 +09:00

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 2
versionName "1.0.1"
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'
}