]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/build.gradle
Convert the views and data classes to Kotlin. https://redmine.stoutner.com/issues/744
[PrivacyBrowserAndroid.git] / app / build.gradle
1 /*
2  * Copyright © 2016-2021 Soren Stoutner <soren@stoutner.com>.
3  *
4  * This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
5  *
6  * Privacy Browser 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 Browser 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 apply plugin: 'com.android.application'
21 apply plugin: 'kotlin-android'
22
23 android {
24     compileSdkVersion 30
25
26     defaultConfig {
27         minSdkVersion 19
28         targetSdkVersion 30
29         versionCode 56
30         versionName "3.8.1"
31
32         // `multiDexEnabled` can possibly be removed once the `minSdkVersion` is >= 21.
33         multiDexEnabled true
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     // Gradle requires a `flavorDimension`, but it isn't used for anything in Privacy Browser.
50     flavorDimensions "basic"
51
52     productFlavors {
53         standard {
54             applicationId "com.stoutner.privacybrowser.standard"
55             dimension "basic"
56         }
57
58         free {
59             applicationId "com.stoutner.privacybrowser.free"
60             dimension "basic"
61         }
62     }
63 }
64
65 repositories {
66     mavenCentral()
67 }
68
69 dependencies {
70     implementation fileTree(include: ['*.jar'], dir: 'libs')
71
72     // Include the following AndroidX libraries.
73     implementation 'androidx.arch.core:core-common:2.1.0'
74     implementation 'androidx.arch.core:core-runtime:2.1.0'
75     implementation 'androidx.appcompat:appcompat:1.3.1'
76     implementation 'androidx.cardview:cardview:1.0.0'
77     implementation 'androidx.coordinatorlayout:coordinatorlayout:1.1.0'
78     implementation 'androidx.core:core-ktx:1.6.0'
79     implementation 'androidx.drawerlayout:drawerlayout:1.1.1'
80     implementation 'androidx.preference:preference-ktx:1.1.1'
81     implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
82     implementation 'androidx.viewpager:viewpager:1.0.0'
83     implementation 'androidx.webkit:webkit:1.4.0'
84
85     // Include the Kotlin standard libraries.  This should be the same version number listed in project build.gradle.
86     implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.21'
87
88     // Include the Google material library.
89     implementation 'com.google.android.material:material:1.4.0'
90
91     // Only compile AdMob ads for the free flavor.
92     freeImplementation 'com.google.android.gms:play-services-ads:20.2.0'
93 }