60 lines
2.0 KiB
Groovy
60 lines
2.0 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'org.jetbrains.kotlin.android'
|
|
}
|
|
|
|
android {
|
|
namespace 'top.rrricardo.motioncapture'
|
|
compileSdk 33
|
|
|
|
defaultConfig {
|
|
applicationId "top.rrricardo.motioncapture"
|
|
minSdk 21
|
|
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
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '1.8'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// Android 依赖库
|
|
implementation 'androidx.core:core-ktx:1.9.0'
|
|
implementation 'androidx.appcompat:appcompat:1.5.1'
|
|
implementation 'com.google.android.material:material:1.7.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
implementation 'androidx.core:core-ktx:latest.release'
|
|
implementation 'androidx.core:core-ktx:+'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
|
|
|
|
// MediaPipe依赖文件
|
|
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
|
|
// MediaPipe deps
|
|
implementation 'com.google.flogger:flogger:latest.release'
|
|
implementation 'com.google.flogger:flogger-system-backend:latest.release'
|
|
implementation 'com.google.code.findbugs:jsr305:latest.release'
|
|
implementation 'com.google.guava:guava:27.0.1-android'
|
|
implementation 'com.google.protobuf:protobuf-javalite:latest.release'
|
|
// CameraX core library
|
|
def camerax_version = "1.2.0"
|
|
implementation "androidx.camera:camera-core:$camerax_version"
|
|
implementation "androidx.camera:camera-camera2:$camerax_version"
|
|
implementation "androidx.camera:camera-lifecycle:$camerax_version"
|
|
} |