2024-08-21 10:08:05 +08:00
|
|
|
import java.io.FileInputStream
|
|
|
|
import java.util.Properties
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
alias(libs.plugins.android.application)
|
|
|
|
alias(libs.plugins.jetbrains.kotlin.android)
|
|
|
|
alias(libs.plugins.compose.compiler)
|
|
|
|
alias(libs.plugins.kotlin.serialization)
|
|
|
|
}
|
|
|
|
|
|
|
|
val keystorePropertiesFile = rootProject.file("key.properties")
|
|
|
|
val keystoreProperties = Properties()
|
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
keystoreProperties.load(FileInputStream(keystorePropertiesFile))
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "me.lsong.mytv"
|
|
|
|
compileSdk = 34
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId = "me.lsong.mytv"
|
2025-01-06 15:53:41 +08:00
|
|
|
minSdk = 30
|
2024-08-21 10:08:05 +08:00
|
|
|
targetSdk = 34
|
2024-09-06 00:44:42 +08:00
|
|
|
versionCode = 4
|
|
|
|
versionName = "1.0.$versionCode"
|
2024-08-21 10:08:05 +08:00
|
|
|
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
vectorDrawables {
|
|
|
|
useSupportLibrary = true
|
|
|
|
}
|
|
|
|
|
|
|
|
ndk {
|
|
|
|
abiFilters.addAll(listOf("armeabi-v7a", "arm64-v8a", "x86_64"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
isMinifyEnabled = true
|
|
|
|
isShrinkResources = true
|
|
|
|
proguardFiles(
|
|
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
|
|
"proguard-rules.pro"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "1.8"
|
|
|
|
}
|
|
|
|
buildFeatures {
|
|
|
|
compose = true
|
|
|
|
}
|
|
|
|
packaging {
|
|
|
|
resources {
|
|
|
|
excludes += "/META-INF/{AL2.0,LGPL2.1}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
signingConfigs {
|
|
|
|
create("release") {
|
|
|
|
storeFile =
|
|
|
|
file(System.getenv("KEYSTORE") ?: keystoreProperties["storeFile"] ?: "keystore.jks")
|
|
|
|
storePassword = System.getenv("KEYSTORE_PASSWORD")
|
|
|
|
?: keystoreProperties.getProperty("storePassword")
|
|
|
|
keyAlias = System.getenv("KEY_ALIAS") ?: keystoreProperties.getProperty("keyAlias")
|
|
|
|
keyPassword =
|
|
|
|
System.getenv("KEY_PASSWORD") ?: keystoreProperties.getProperty("keyPassword")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
getByName("release") {
|
|
|
|
signingConfig = signingConfigs.getByName("release")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
|
|
|
implementation(libs.androidx.core.ktx)
|
|
|
|
implementation(libs.androidx.lifecycle.runtime.ktx)
|
|
|
|
implementation(libs.androidx.lifecycle.viewmodel.compose)
|
|
|
|
implementation(libs.androidx.activity.compose)
|
|
|
|
implementation(platform(libs.androidx.compose.bom))
|
|
|
|
implementation(libs.androidx.ui)
|
|
|
|
implementation(libs.androidx.ui.graphics)
|
|
|
|
implementation(libs.androidx.ui.tooling.preview)
|
|
|
|
implementation(libs.androidx.material3)
|
|
|
|
implementation(libs.kotlinx.collections.immutable)
|
|
|
|
implementation(libs.androidx.material.icons.extended)
|
|
|
|
|
|
|
|
// TV Compose
|
|
|
|
implementation(libs.androidx.tv.foundation)
|
|
|
|
implementation(libs.androidx.tv.material)
|
|
|
|
|
|
|
|
// 播放器
|
|
|
|
implementation(libs.androidx.media3.exoplayer)
|
|
|
|
implementation(libs.androidx.media3.exoplayer.hls)
|
|
|
|
implementation(libs.androidx.media3.exoplayer.rtsp)
|
|
|
|
|
|
|
|
// 序列化
|
|
|
|
implementation(libs.kotlinx.serialization)
|
|
|
|
|
|
|
|
// 网络请求
|
|
|
|
implementation(libs.okhttp)
|
|
|
|
implementation(libs.androidasync)
|
|
|
|
|
|
|
|
// 二维码
|
|
|
|
implementation(libs.qrose)
|
|
|
|
implementation(libs.coil.compose)
|
|
|
|
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.aar"))))
|
|
|
|
|
|
|
|
testImplementation(libs.junit)
|
|
|
|
androidTestImplementation(libs.androidx.junit)
|
|
|
|
androidTestImplementation(libs.androidx.espresso.core)
|
|
|
|
androidTestImplementation(platform(libs.androidx.compose.bom))
|
|
|
|
androidTestImplementation(libs.androidx.ui.test.junit4)
|
|
|
|
debugImplementation(libs.androidx.ui.tooling)
|
|
|
|
debugImplementation(libs.androidx.ui.test.manifest)
|
2025-01-06 15:53:41 +08:00
|
|
|
}
|