blob: 23c34b2b9f5b0ef85f181e04d841e454b893e19d [file] [log] [blame]
nift457a1e692023-01-11 15:10:47 +01001plugins {
2 id 'com.android.application'
3}
4
5android {
6 namespace 'com.libremobileos.facedetect'
7 compileSdk 33
8
9 defaultConfig {
10 applicationId "com.libremobileos.facedetect"
nift4149a9ca2023-01-12 20:47:41 +010011 minSdk 29
12 targetSdk 33
nift457a1e692023-01-11 15:10:47 +010013 versionCode 1
14 versionName "1.0"
15 }
16
17 buildTypes {
18 release {
19 minifyEnabled false
20 proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
21 }
22 }
23 compileOptions {
24 sourceCompatibility JavaVersion.VERSION_11
25 targetCompatibility JavaVersion.VERSION_11
26 }
27}
28
29dependencies {
30 implementation('androidx.annotation:annotation:1.5.0')
nift44406e1d2023-01-14 00:12:06 +010031 implementation('androidx.appcompat:appcompat:1.6.0')
nift4149a9ca2023-01-12 20:47:41 +010032 implementation(project(':FaceShared'))
nift457a1e692023-01-11 15:10:47 +010033
nift44406e1d2023-01-14 00:12:06 +010034 def camerax_version = "1.3.0-alpha02"
35 implementation "androidx.camera:camera-core:${camerax_version}"
36 implementation "androidx.camera:camera-camera2:${camerax_version}"
37 implementation "androidx.camera:camera-lifecycle:${camerax_version}"
38 implementation "androidx.camera:camera-video:${camerax_version}"
39 implementation "androidx.camera:camera-view:${camerax_version}"
40 implementation "androidx.camera:camera-extensions:${camerax_version}"
41 implementation "androidx.exifinterface:exifinterface:1.3.5"
nift457a1e692023-01-11 15:10:47 +010042}