]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/build.gradle
Populate the About:Permissions tab.
[PrivacyBrowserAndroid.git] / app / build.gradle
1 /**
2  * Copyright 2016 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
22 android {
23     signingConfigs {
24     }
25
26     compileSdkVersion 23
27     buildToolsVersion "23.0.3"
28     defaultConfig {
29         applicationId "com.stoutner.privacybrowser"
30         minSdkVersion 15
31         targetSdkVersion 23
32         versionCode 7
33         versionName "1.6"
34     }
35
36     buildTypes {
37         release {
38             minifyEnabled true
39             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
40         }
41     }
42
43     productFlavors {
44         standard {
45             applicationId "com.stoutner.privacybrowser.standard"
46         }
47
48         free {
49             applicationId "com.stoutner.privacybrowser.free"
50         }
51     }
52 }
53
54 dependencies {
55     compile fileTree(dir: 'libs', include: ['*.jar'])
56     compile 'com.android.support:design:23.4.0'
57     // Only compile com.google.android.gms:play-services-ads for the free version.
58     freeCompile 'com.google.android.gms:play-services-ads:9.0.2'
59 }