| giolekva | b64297c | 2021-12-13 14:36:32 +0400 | [diff] [blame] | 1 | plugins { |
| 2 | id 'com.android.application' |
| 3 | } |
| 4 | |
| 5 | android { |
| 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 | |
| 32 | dependencies { |
| 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' |
| giolekva | 313ee2b | 2021-12-15 15:17:29 +0400 | [diff] [blame] | 39 | implementation ':pcloud@aar' |
| giolekva | b64297c | 2021-12-13 14:36:32 +0400 | [diff] [blame] | 40 | |
| 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' |
| giolekva | 8d6a0ca | 2021-12-19 17:42:25 +0400 | [diff] [blame^] | 50 | implementation "androidx.security:security-crypto:1.1.0-alpha03" |
| giolekva | b64297c | 2021-12-13 14:36:32 +0400 | [diff] [blame] | 51 | } |