forked from RikkaW/SmsCodeHelper
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
52 lines (44 loc) · 1.23 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.1'
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
subprojects {
ext {
config = [
applicationId : "me.gitai.smscodehelper",
compileSdkVersion : 23,
buildToolsVersion : "23.0.1",
minSdkVersion : 15,
targetSdkVersion : 23,
releaseSigning : [
storeFile : System.getenv("KEYSTORE"),
storePassword : System.getenv("KEYSTORE_PASSWORD"),
alias : System.getenv("KEY_ALIAS"),
aliasPassword: System.getenv("KEY_PASSWORD")
],
versionCode : 10,
versionName : "0.0.8"
]
versions = [
androidSupport : "23.1.1",
junit:"4.1.2",
robolectric:"3.0-rc3",
espresso:"2.2.1",
runner:"0.4.1",
fastjson:"1.2.7"
]
}
}