Android/build.gradle.kts

54 lines
1.8 KiB
Plaintext
Raw 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-05-26 07:08:27 +00:00
}