101 lines
3.2 KiB
Groovy
101 lines
3.2 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'org.jetbrains.kotlin.android'
|
|
id 'kotlin-kapt'
|
|
id 'dagger.hilt.android.plugin'
|
|
}
|
|
|
|
android {
|
|
namespace 'com.xsynergy.android'
|
|
compileSdk 34
|
|
|
|
defaultConfig {
|
|
applicationId "com.xsynergy.android"
|
|
minSdk 26
|
|
targetSdk 34
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
vectorDrawables {
|
|
useSupportLibrary true
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '17'
|
|
freeCompilerArgs += [
|
|
"-opt-in=kotlin.RequiresOptIn",
|
|
"-Xjvm-default=all"
|
|
]
|
|
}
|
|
buildFeatures {
|
|
compose true
|
|
}
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion '1.5.14'
|
|
}
|
|
packaging {
|
|
resources {
|
|
excludes += '/META-INF/{AL2.0,LGPL2.1}'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// Core
|
|
implementation 'androidx.core:core-ktx:1.13.1'
|
|
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.4'
|
|
implementation 'androidx.activity:activity-compose:1.9.1'
|
|
implementation platform('androidx.compose:compose-bom:2024.06.00')
|
|
implementation 'androidx.compose.ui:ui'
|
|
implementation 'androidx.compose.ui:ui-graphics'
|
|
implementation 'androidx.compose.ui:ui-tooling-preview'
|
|
implementation 'androidx.compose.material3:material3'
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.8.4'
|
|
implementation 'androidx.navigation:navigation-compose:2.7.7'
|
|
|
|
// Network
|
|
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
|
|
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:4.12.0'
|
|
|
|
// DI
|
|
implementation 'com.google.dagger:hilt-android:2.48'
|
|
kapt 'com.google.dagger:hilt-compiler:2.48'
|
|
implementation 'androidx.hilt:hilt-navigation-compose:1.1.0'
|
|
|
|
// Database
|
|
implementation 'androidx.room:room-runtime:2.6.1'
|
|
implementation 'androidx.room:room-ktx:2.6.1'
|
|
kapt 'androidx.room:room-compiler:2.6.1'
|
|
|
|
// LiveKit (TODO: 需要确认GXRTC服务器集成方式)
|
|
// implementation 'io.livekit:livekit-android:2.20.2'
|
|
|
|
// ARCore
|
|
implementation 'com.google.ar:core:1.50.0'
|
|
|
|
// MQTT (TODO: 需要确认具体MQTT客户端库)
|
|
// implementation 'org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.2.5'
|
|
// implementation 'org.eclipse.paho:org.eclipse.paho.android.service:1.1.1'
|
|
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
|
|
androidTestImplementation platform('androidx.compose:compose-bom:2024.06.00')
|
|
androidTestImplementation 'androidx.compose.ui:ui-test-junit4'
|
|
debugImplementation 'androidx.compose.ui:ui-tooling'
|
|
debugImplementation 'androidx.compose.ui:ui-test-manifest'
|
|
} |