64 lines
1.8 KiB
Plaintext
64 lines
1.8 KiB
Plaintext
plugins {
|
|
alias(libs.plugins.android.application)
|
|
alias(libs.plugins.kotlin.android)
|
|
id ("kotlin-kapt")
|
|
id ("kotlin-parcelize")
|
|
id("io.objectbox")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.ux.video.file.filerecovery"
|
|
compileSdk = 36
|
|
|
|
defaultConfig {
|
|
applicationId = "com.ux.video.file.filerecovery"
|
|
minSdk = 24
|
|
targetSdk = 36
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "11"
|
|
}
|
|
buildFeatures{
|
|
viewBinding = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation(libs.androidx.core.ktx)
|
|
implementation(libs.androidx.appcompat)
|
|
implementation(libs.material)
|
|
implementation(libs.androidx.activity)
|
|
implementation(libs.androidx.constraintlayout)
|
|
implementation(libs.androidx.lifecycle.livedata.ktx)
|
|
implementation(libs.androidx.lifecycle.viewmodel.ktx)
|
|
implementation(libs.androidx.fragment.ktx)
|
|
testImplementation(libs.junit)
|
|
androidTestImplementation(libs.androidx.junit)
|
|
androidTestImplementation(libs.androidx.espresso.core)
|
|
implementation (libs.glide)
|
|
kapt (libs.compiler)
|
|
implementation ("androidx.lifecycle:lifecycle-runtime-ktx:2.6.2")
|
|
implementation ("com.google.android.material:material:1.13.0")
|
|
implementation(project(":pickerview"))
|
|
implementation ("androidx.media3:media3-exoplayer:1.8.0")
|
|
implementation ("androidx.media3:media3-ui:1.8.0")
|
|
} |