Bigcoursedesign-android/build.gradle.kts

88 lines
3.7 KiB
Plaintext

plugins {
id("com.android.application")
}
android {
namespace = "com.hnucm.bigprogect"
compileSdk = 34
defaultConfig {
applicationId = "com.hnucm.bigprogect"
minSdk = 24
targetSdk = 34
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_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
}
dependencies {
implementation ("com.squareup.okhttp3:okhttp:4.9.0")
implementation ("com.google.code.gson:gson:2.8.6")
implementation("androidx.appcompat:appcompat:1.6.1")
implementation("com.google.android.material:material:1.9.0")
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
implementation("androidx.legacy:legacy-support-v4:1.0.0")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
implementation ("io.github.scwang90:refresh-layout-kernel:2.1.0") //核心必须依赖
implementation ("io.github.scwang90:refresh-header-classics:2.1.0") //经典刷新头
implementation ("io.github.scwang90:refresh-header-radar:2.1.0") //雷达刷新头
implementation ("io.github.scwang90:refresh-header-falsify:2.1.0") //虚拟刷新头
implementation ("io.github.scwang90:refresh-header-material:2.1.0") //谷歌刷新头
implementation ("io.github.scwang90:refresh-header-two-level:2.1.0") //二级刷新头
implementation ("io.github.scwang90:refresh-footer-ball:2.1.0") //球脉冲加载
implementation ("io.github.scwang90:refresh-footer-classics:2.1.0")
implementation("com.squareup.okhttp3:okhttp:4.11.0")
implementation ("com.squareup.retrofit2:retrofit:2.9.0")
implementation ("com.squareup.retrofit2:converter-gson:2.9.0")
// implementation 'com.squareup.retrofit2:converter-scalars:2.9.0'
implementation("com.squareup.okhttp3:okhttp:4.11.0")
implementation ("com.github.bumptech.glide:glide:4.15.1")
//implementation ("com.qhutch.elevationimageview:elevationimageview:1.0")
implementation ("io.github.youth5201314:banner:2.2.3")
implementation ("com.github.bumptech.glide:glide:4.15.1")
implementation ("io.github.youth5201314:banner:2.2.3")
implementation ("com.github.bumptech.glide:glide:4.15.1")
implementation ("com.google.code.gson:gson:2.10.1")
implementation ("com.geyifeng.immersionbar:immersionbar:3.2.2")
implementation ("com.geyifeng.immersionbar:immersionbar-components:3.2.2")
implementation ("androidx.recyclerview:recyclerview:1.1.0")//可横向滚动
implementation("org.greenrobot:eventbus:3.3.1")//传值
implementation ("io.github.lucksiege:pictureselector:v3.11.2")
implementation ("io.github.lucksiege:compress:v3.11.2")
implementation ("io.github.lucksiege:ucrop:v3.11.2")
implementation ("io.github.lucksiege:camerax:v3.11.2")
implementation ("com.github.bumptech.glide:glide:4.15.1")
implementation ("com.baidu.lbsyun:BaiduMapSDK_Map:7.5.4")
implementation ("com.baidu.lbsyun:BaiduMapSDK_Location:9.3.7")
implementation ("com.guolindev.permissionx:permissionx:1.7.1")
implementation ("com.squareup.okhttp3:logging-interceptor:4.9.3")
implementation ("com.squareup.retrofit2:retrofit:2.9.0")
implementation ("com.squareup.retrofit2:converter-gson:2.9.0")
}