forked from ushahidi/SMSSync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
59 lines (52 loc) · 1.73 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
* Copyright (c) 2010 - 2015 Ushahidi Inc
* All rights reserved
* Contact: [email protected]
* Website: http://www.ushahidi.com
* GNU Lesser General Public License Usage
* This file may be used under the terms of the GNU Lesser
* General Public License version 3 as published by the Free Software
* Foundation and appearing in the file LICENSE.LGPL included in the
* packaging of this file. Please review the following information to
* ensure the GNU Lesser General Public License version 3 requirements
* will be met: http://www.gnu.org/licenses/lgpl.html.
*
* If you have questions regarding the use of this file, please contact
* Ushahidi developers at [email protected].
*/
apply plugin: 'com.android.application'
def globalConfiguration = rootProject.extensions.getByName("ext")
android {
compileSdkVersion globalConfiguration.getAt("androidCompileSdkVersion")
buildToolsVersion globalConfiguration.getAt("androidBuildToolsVersion")
defaultConfig {
minSdkVersion globalConfiguration.getAt("androidMinSdkVersion")
targetSdkVersion globalConfiguration.getAt("androidTargetSdkVersion")
applicationId "com.smssync.portal.one"
}
buildTypes {
release {
minifyEnabled false
}
}
productFlavors {
portalOne {
applicationId "com.smssync.portal.two"
}
portalTwo {
applicationId "com.smssync.portal.three"
}
portalThree {
applicationId "com.smssync.portal.four"
}
portalFour {
applicationId "com.smssync.portal.five"
}
portalFive {
applicationId "com.smssync.portal.six"
}
}
lintOptions {
abortOnError false
}
}