64 lines
1.9 KiB
Plaintext
64 lines
1.9 KiB
Plaintext
plugins {
|
|
id("com.android.application")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.hi.music.player"
|
|
compileSdk = 34
|
|
|
|
defaultConfig {
|
|
//com.hi.music.player
|
|
applicationId = "com.hi.music.player.test"
|
|
minSdk = 23
|
|
targetSdk = 34
|
|
versionCode = 1
|
|
versionName = "1.0.0"
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
buildFeatures {
|
|
viewBinding = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation("androidx.appcompat:appcompat:1.7.0")
|
|
implementation("com.google.android.material:material:1.12.0")
|
|
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
|
|
implementation("androidx.activity:activity:1.9.1")
|
|
testImplementation("junit:junit:4.13.2")
|
|
androidTestImplementation("androidx.test.ext:junit:1.2.1")
|
|
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1")
|
|
|
|
|
|
implementation("com.squareup.retrofit2:retrofit:2.9.0")
|
|
implementation("com.squareup.retrofit2:converter-gson:2.9.0")
|
|
implementation("com.squareup.retrofit2:adapter-rxjava2:2.9.0")
|
|
implementation("io.reactivex.rxjava2:rxjava:2.2.21")
|
|
implementation("io.reactivex.rxjava2:rxandroid:2.1.1")
|
|
implementation("com.squareup.okhttp3:logging-interceptor:4.11.0")
|
|
|
|
implementation("androidx.paging:paging-runtime-ktx:3.3.2")
|
|
|
|
implementation("com.github.bumptech.glide:glide:4.16.0")
|
|
|
|
//----------media3
|
|
implementation("androidx.media3:media3-exoplayer:1.4.1")
|
|
implementation("androidx.media3:media3-session:1.4.1")
|
|
//----------media3
|
|
} |