mirror of https://github.com/lizongying/my-tv.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1013 B
42 lines
1013 B
plugins {
|
|
id 'com.android.application'
|
|
id 'org.jetbrains.kotlin.android'
|
|
}
|
|
|
|
android {
|
|
namespace 'com.lizongying.mytv'
|
|
compileSdk 33
|
|
|
|
defaultConfig {
|
|
applicationId "com.lizongying.mytv"
|
|
minSdk 23
|
|
targetSdk 33
|
|
versionCode 11
|
|
versionName "1.1"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget=17
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation 'androidx.core:core-ktx:1.11.0-beta02'
|
|
implementation 'androidx.leanback:leanback:1.0.0'
|
|
implementation 'com.github.bumptech.glide:glide:4.11.0'
|
|
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.2"
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.0-RC")
|
|
} |