]> gitweb.stoutner.com Git - PrivacyCell.git/blob - app/build.gradle
51116f0b02b221a8f0e912c659c05ddb56964f59
[PrivacyCell.git] / app / build.gradle
1 /*
2  * Copyright © 2021 Soren Stoutner <soren@stoutner.com>.
3  *
4  * This file is part of Privacy Cell <https://www.stoutner.com/privacy-cell>.
5  *
6  * Privacy Cell is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Privacy Cell is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Privacy Browser.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 plugins {
21     id 'com.android.application'
22     id 'kotlin-android'
23 }
24
25 android {
26     compileSdk 30
27
28     defaultConfig {
29         applicationId "com.stoutner.privacycell"
30         minSdk 30
31         targetSdk 30
32         versionCode 2
33         versionName "1.1"
34     }
35
36     buildTypes {
37         debug {
38             minifyEnabled false
39             shrinkResources false
40         }
41
42         release {
43             minifyEnabled true
44             shrinkResources true
45             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
46         }
47     }
48 }
49
50 dependencies {
51     // Include the following AndroidX libraries.
52     implementation 'androidx.appcompat:appcompat:1.3.1'
53     implementation 'androidx.core:core-ktx:1.6.0'
54     implementation 'androidx.preference:preference-ktx:1.1.1'
55     implementation 'androidx.webkit:webkit:1.4.0'
56
57     // Include the Kotlin standard libraries.  This should be the same version number listed in project build.gradle.
58     implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.30'
59
60     // Include the Google material library.
61     implementation 'com.google.android.material:material:1.4.0'
62 }