]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/build.gradle
Update URL link in copyright text at the beginning of files and information about...
[PrivacyBrowserAndroid.git] / app / build.gradle
1 /**
2  * Copyright 2016 Soren Stoutner <soren@stoutner.com>.
3  *
4  * This file is part of 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     compileSdkVersion 23
26     buildToolsVersion "23.0.2"
27     defaultConfig {
28         applicationId "com.stoutner.privacybrowser"
29         minSdkVersion 10
30         targetSdkVersion 23
31         versionCode 1
32         versionName "1.0"
33     }
34     buildTypes {
35         release {
36             minifyEnabled false
37             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
38         }
39     }
40     productFlavors {
41         standard {
42             applicationId "com.stoutner.privacybrowser.standard"
43             versionName "1.0-standard"
44         }
45
46         free {
47             applicationId "com.stoutner.privacybrowser.free"
48             versionName "1.0-free"
49         }
50     }
51 }
52
53 dependencies {
54     compile fileTree(dir: 'libs', include: ['*.jar'])
55     compile 'com.android.support:appcompat-v7:23.2.0'
56     compile 'com.android.support:design:23.2.0'
57     compile 'com.android.support:support-v4:23.2.0'
58     compile 'com.google.android.gms:play-services-ads:8.4.0'
59 }