blob: b33c515e13b6d8ae90a35b44231523d8b1a8274f [file] [log] [blame]
Sebastiano Barezzi418f32c2022-08-01 18:04:08 +02001plugins {
2 id 'com.android.application'
3 id 'org.jetbrains.kotlin.android'
4}
5
6android {
7 compileSdk 32
8
9 defaultConfig {
10 applicationId "org.lineageos.aperture"
Sebastiano Barezzi66d4bfb2022-08-05 23:45:32 +020011 minSdk 29
Sebastiano Barezzi418f32c2022-08-01 18:04:08 +020012 targetSdk 32
13 versionCode 1
14 versionName "1.0"
15
16 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
17 }
18
19 buildTypes {
20 release {
21 minifyEnabled false
22 proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
23 }
24 }
25 compileOptions {
26 sourceCompatibility JavaVersion.VERSION_1_8
27 targetCompatibility JavaVersion.VERSION_1_8
28 }
29 kotlinOptions {
30 jvmTarget = '1.8'
31 }
32
33 buildFeatures {
34 viewBinding true
35 }
36}
37
38dependencies {
39 implementation 'androidx.core:core-ktx:1.8.0'
40 implementation 'androidx.appcompat:appcompat:1.4.2'
41 implementation 'com.google.android.material:material:1.6.1'
42 implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
Sebastiano Barezzi04680062022-08-04 15:28:34 +020043 implementation 'androidx.preference:preference:1.2.0'
Sebastiano Barezzi418f32c2022-08-01 18:04:08 +020044
45 // CameraX core library using the camera2 implementation
46 def camerax_version = "1.2.0-alpha04"
47 // The following line is optional, as the core library is included indirectly by camera-camera2
48 implementation "androidx.camera:camera-core:${camerax_version}"
49 implementation "androidx.camera:camera-camera2:${camerax_version}"
50 // If you want to additionally use the CameraX Lifecycle library
51 implementation "androidx.camera:camera-lifecycle:${camerax_version}"
52 // If you want to additionally use the CameraX VideoCapture library
53 implementation "androidx.camera:camera-video:${camerax_version}"
54 // If you want to additionally use the CameraX View class
55 implementation "androidx.camera:camera-view:${camerax_version}"
56 // If you want to additionally add CameraX ML Kit Vision Integration
57 implementation "androidx.camera:camera-mlkit-vision:${camerax_version}"
58 // If you want to additionally use the CameraX Extensions library
59 implementation "androidx.camera:camera-extensions:${camerax_version}"
60}