You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.1 KiB
69 lines
2.1 KiB
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
namespace 'com.example.dronerecognition'
|
|
compileSdk 33
|
|
|
|
defaultConfig {
|
|
applicationId "com.example.dronerecognition"
|
|
minSdk 24
|
|
targetSdk 33
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
lint {
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
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.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
|
|
|
// Gson for JSON serialization
|
|
implementation 'com.google.code.gson:gson:2.10.1'
|
|
|
|
// CameraX
|
|
def camerax_version = "1.2.3"
|
|
implementation "androidx.camera:camera-core:${camerax_version}"
|
|
implementation "androidx.camera:camera-camera2:${camerax_version}"
|
|
implementation "androidx.camera:camera-lifecycle:${camerax_version}"
|
|
implementation "androidx.camera:camera-view:${camerax_version}"
|
|
|
|
// ML Kit for barcode scanning
|
|
implementation 'com.google.mlkit:barcode-scanning:17.1.0'
|
|
|
|
// Guava for ListenableFuture
|
|
implementation 'com.google.guava:guava:31.1-android'
|
|
//map
|
|
implementation 'com.amap.api:3dmap:9.3.1'
|
|
implementation 'com.amap.api:search:9.3.1'
|
|
|
|
// ONNX Runtime for AI inference
|
|
implementation 'com.microsoft.onnxruntime:onnxruntime-android:1.16.1'
|
|
|
|
// For bitmap processing
|
|
implementation 'androidx.palette:palette: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'
|
|
} |