2024-06-22 04:25:20 +08:00
|
|
|
|
plugins {
|
|
|
|
|
|
alias(libs.plugins.android.application)
|
|
|
|
|
|
alias(libs.plugins.jetbrains.kotlin.android)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
|
namespace = "com.aiosman.riderpro"
|
|
|
|
|
|
compileSdk = 34
|
|
|
|
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
|
|
applicationId = "com.aiosman.riderpro"
|
|
|
|
|
|
minSdk = 24
|
|
|
|
|
|
targetSdk = 34
|
|
|
|
|
|
versionCode = 1
|
|
|
|
|
|
versionName = "1.0"
|
|
|
|
|
|
|
|
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
|
|
vectorDrawables {
|
|
|
|
|
|
useSupportLibrary = true
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
|
|
release {
|
|
|
|
|
|
isMinifyEnabled = false
|
|
|
|
|
|
proguardFiles(
|
|
|
|
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
|
|
|
|
"proguard-rules.pro"
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
compileOptions {
|
|
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
|
|
}
|
|
|
|
|
|
kotlinOptions {
|
|
|
|
|
|
jvmTarget = "1.8"
|
|
|
|
|
|
}
|
|
|
|
|
|
buildFeatures {
|
|
|
|
|
|
compose = true
|
|
|
|
|
|
}
|
|
|
|
|
|
composeOptions {
|
|
|
|
|
|
kotlinCompilerExtensionVersion = "1.5.1"
|
|
|
|
|
|
}
|
|
|
|
|
|
packaging {
|
|
|
|
|
|
resources {
|
|
|
|
|
|
excludes += "/META-INF/{AL2.0,LGPL2.1}"
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
|
|
|
|
|
|
|
implementation(libs.androidx.core.ktx)
|
|
|
|
|
|
implementation(libs.androidx.lifecycle.runtime.ktx)
|
|
|
|
|
|
implementation(libs.androidx.activity.compose)
|
|
|
|
|
|
implementation(platform(libs.androidx.compose.bom))
|
|
|
|
|
|
implementation(libs.androidx.ui)
|
|
|
|
|
|
implementation(libs.androidx.ui.graphics)
|
|
|
|
|
|
implementation(libs.androidx.ui.tooling.preview)
|
|
|
|
|
|
implementation(libs.androidx.material3.android)
|
|
|
|
|
|
implementation(libs.androidx.navigation.compose)
|
|
|
|
|
|
implementation (libs.androidx.paging.compose)
|
|
|
|
|
|
implementation(libs.androidx.paging.runtime)
|
2024-07-12 01:36:59 +08:00
|
|
|
|
implementation(libs.maps.compose)
|
|
|
|
|
|
implementation(libs.accompanist.systemuicontroller)
|
|
|
|
|
|
implementation(libs.androidx.media3.exoplayer) // 核心播放器
|
|
|
|
|
|
implementation(libs.androidx.media3.ui) // UI组件(可选)
|
|
|
|
|
|
implementation(libs.androidx.media3.session)
|
2024-07-12 04:36:03 +08:00
|
|
|
|
implementation(libs.androidx.activity.ktx)
|
|
|
|
|
|
implementation(libs.androidx.lifecycle.common.jvm) // 用于媒体会话(可选)
|
2024-06-22 04:25:20 +08:00
|
|
|
|
testImplementation(libs.junit)
|
|
|
|
|
|
androidTestImplementation(libs.androidx.junit)
|
|
|
|
|
|
androidTestImplementation(libs.androidx.espresso.core)
|
|
|
|
|
|
androidTestImplementation(platform(libs.androidx.compose.bom))
|
|
|
|
|
|
androidTestImplementation(libs.androidx.ui.test.junit4)
|
|
|
|
|
|
debugImplementation(libs.androidx.ui.tooling)
|
|
|
|
|
|
debugImplementation(libs.androidx.ui.test.manifest)
|
2024-07-15 19:02:42 +08:00
|
|
|
|
implementation ("com.google.android.libraries.places:places:3.3.0")
|
2024-06-22 04:25:20 +08:00
|
|
|
|
}
|