-
Notifications
You must be signed in to change notification settings - Fork 96
/
build.gradle
48 lines (38 loc) · 890 Bytes
/
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
public int version_code() {
return 5
}
public String version_name() {
return '0.5'
}
public int android_sdk_version() {
return 22
}
public String android_build_tools_version() {
return '22.0.1'
}
public String android_min_sdk_version() {
return 8
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
}
}
allprojects {
repositories {
maven {
url "file://${System.env.ANDROID_HOME}/extras/android/m2repository/"
}
mavenCentral()
}
if (!project.hasProperty("ossrhUsername")) {
ext.ossrhUsername = "no-username"
}
if (!project.hasProperty("ossrhPassword")) {
ext.ossrhPassword = "no-password"
}
}