blob: 6a8c04f74aaf69b41cdfa0a41b622e4cbb84b98c [file] [log] [blame]
giolekvab64297c2021-12-13 14:36:32 +04001plugins {
2 id 'com.android.application'
3}
4
5android {
6 compileSdk 31
7
8 defaultConfig {
9 applicationId "me.lekva.pcloud"
10 minSdk 21
11 targetSdk 31
12 versionCode 1
13 versionName "1.0"
14
15 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
16 }
17
18 buildTypes {
19 release {
20 minifyEnabled false
21 proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
22 }
23 }
24 compileOptions {
25 coreLibraryDesugaringEnabled true
26
27 sourceCompatibility JavaVersion.VERSION_1_8
28 targetCompatibility JavaVersion.VERSION_1_8
29 }
30}
31
32dependencies {
33 implementation 'com.journeyapps:zxing-android-embedded:4.3.0'
34 implementation 'androidx.appcompat:appcompat:1.3.1'
35 implementation 'androidx.legacy:legacy-support-v13:1.0.0'
36 implementation "androidx.activity:activity:1.3.1"
37
38 implementation 'com.google.code.gson:gson:2.8.9'
giolekva313ee2b2021-12-15 15:17:29 +040039 implementation ':pcloud@aar'
giolekvab64297c2021-12-13 14:36:32 +040040
41 // Desugaring and multidex is required for API < 21.
42 coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
43 implementation 'androidx.multidex:multidex:2.0.1'
44
45 implementation 'com.google.android.material:material:1.3.0'
46 implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
47 implementation 'androidx.camera:camera-core:1.1.0-alpha11'
48 implementation 'androidx.camera:camera-lifecycle:1.1.0-alpha11'
49 implementation 'androidx.camera:camera-view:1.0.0-alpha31'
giolekva8d6a0ca2021-12-19 17:42:25 +040050 implementation "androidx.security:security-crypto:1.1.0-alpha03"
giolekvab64297c2021-12-13 14:36:32 +040051}