blob: 65446069dd2d520554f603856b6f19cd5a681e67 [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 }
Sebastiano Barezzi418f32c2022-08-01 18:04:08 +020032}
33
34dependencies {
35 implementation 'androidx.core:core-ktx:1.8.0'
36 implementation 'androidx.appcompat:appcompat:1.4.2'
37 implementation 'com.google.android.material:material:1.6.1'
38 implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
Sebastiano Barezzi04680062022-08-04 15:28:34 +020039 implementation 'androidx.preference:preference:1.2.0'
Sebastiano Barezzi418f32c2022-08-01 18:04:08 +020040
41 // CameraX core library using the camera2 implementation
42 def camerax_version = "1.2.0-alpha04"
43 // The following line is optional, as the core library is included indirectly by camera-camera2
44 implementation "androidx.camera:camera-core:${camerax_version}"
45 implementation "androidx.camera:camera-camera2:${camerax_version}"
46 // If you want to additionally use the CameraX Lifecycle library
47 implementation "androidx.camera:camera-lifecycle:${camerax_version}"
48 // If you want to additionally use the CameraX VideoCapture library
49 implementation "androidx.camera:camera-video:${camerax_version}"
50 // If you want to additionally use the CameraX View class
51 implementation "androidx.camera:camera-view:${camerax_version}"
52 // If you want to additionally add CameraX ML Kit Vision Integration
53 implementation "androidx.camera:camera-mlkit-vision:${camerax_version}"
54 // If you want to additionally use the CameraX Extensions library
55 implementation "androidx.camera:camera-extensions:${camerax_version}"
56}