42 lines
1.0 KiB
Groovy
42 lines
1.0 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
namespace "de.oaa.linkster"
|
|
compileSdk 34
|
|
|
|
defaultConfig {
|
|
applicationId "de.oaa.linkster"
|
|
minSdk 21
|
|
targetSdk 34
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
implementation 'com.google.android.material:material:1.11.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
|
|
// CameraX
|
|
implementation 'androidx.camera:camera-camera2:1.3.1'
|
|
implementation 'androidx.camera:camera-lifecycle:1.3.1'
|
|
implementation 'androidx.camera:camera-view:1.3.1'
|
|
|
|
// ML Kit Barcode Scanning
|
|
implementation 'com.google.mlkit:barcode-scanning:17.2.0'
|
|
|
|
// HTTP Client
|
|
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
|
|
|
|
// JSON Parsing
|
|
implementation 'com.google.code.gson:gson:2.10.1'
|
|
}
|