Android/build.gradle.kts

62 lines
2.1 KiB
Plaintext
Raw Permalink Normal View History

2024-05-26 07:08:27 +00:00
plugins {
alias(libs.plugins.androidApplication)
}
android {
namespace = "com.hnucm.c202201020328"
compileSdk = 34
defaultConfig {
applicationId = "com.hnucm.c202201020328"
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(libs.appcompat)
implementation(libs.material)
implementation(libs.activity)
implementation(libs.constraintlayout)
2024-06-11 13:25:12 +00:00
implementation(libs.gridlayout)
2024-06-14 13:35:20 +00:00
implementation(libs.legacy.support.v4)
2024-05-26 07:08:27 +00:00
testImplementation(libs.junit)
androidTestImplementation(libs.ext.junit)
androidTestImplementation(libs.espresso.core)
implementation ("com.geyifeng.immersionbar:immersionbar:3.2.2")
implementation ("com.geyifeng.immersionbar:immersionbar-components:3.2.2")
2024-06-13 01:45:17 +00:00
implementation ("com.github.bumptech.glide:glide:4.15.1")
2024-06-17 04:04:05 +00:00
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")
2024-06-13 01:45:17 +00:00
2024-06-18 18:59:40 +00:00
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")
2024-12-03 15:55:52 +00:00
implementation ("com.squareup.okhttp3:okhttp:4.11.0")
implementation ("com.google.code.gson:gson:2.10.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")
2024-06-18 20:06:01 +00:00
//权限
2024-06-18 18:59:40 +00:00
2024-05-26 07:08:27 +00:00
}