This repository was archived by the owner on Jan 31, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathbuild.gradle
93 lines (79 loc) · 2.61 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.14.1'
}
}
apply plugin: "com.android.application"
//Shamelessly copied from philm
def versionMajor = 1 //Major change external and internal
def versionMinor = 0 //Major Internal Change
def versionPatch = 1 //Moderate internal change
def versionBuild = 3 //Quickfixes and random bugfixes
android {
compileSdkVersion 21
buildToolsVersion "21.1.0"
defaultConfig {
versionCode versionMajor * 10000 + versionMinor * 1000 + versionPatch * 100 + versionBuild
versionName "${versionMajor}.${versionMinor}.${versionPatch}"
minSdkVersion 9
targetSdkVersion 21
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
//If we don't have gradle.properties, these keys don't exist
if (project.hasProperty("RELEASE_STORE_FILE")) {
signingConfigs {
release {
storeFile file(projectDir.getAbsolutePath() + RELEASE_STORE_FILE)
storePassword RELEASE_STORE_PASSWORD
keyAlias RELEASE_KEY_ALIAS
keyPassword RELEASE_KEY_PASSWORD
}
}
}
buildTypes {
debug {
versionNameSuffix "-debug"
}
//Build release only when we have gradle.properties
if (project.hasProperty("RELEASE_STORE_FILE")) {
release {
signingConfig signingConfigs.release
}
}
}
sourceSets {
main {
manifest.srcFile "AndroidManifest.xml"
java.srcDir "src"
res.srcDir "res"
assets.srcDir "assets"
}
}
}
repositories {
mavenCentral()
maven { url 'http://repo1.maven.org/maven2' }
}
dependencies {
compile 'com.android.support:support-v4:21.0.0'
compile 'com.android.support:appcompat-v7:21.0.0'
compile project(":libs:html-textview")
compile 'com.google.code.gson:gson:2.3'
compile 'com.nineoldandroids:library:2.4.0'
compile 'com.github.castorflex.smoothprogressbar:library:0.5.1'
compile 'se.emilsjolander:stickylistheaders:2.5.0'
compile 'com.github.johnpersano:supertoasts:1.3.4@aar'
compile 'org.apache.commons:commons-lang3:3.3.2'
compile 'com.squareup.okhttp:okhttp:2.0.0'
compile 'com.squareup.okio:okio:1.0.1'
compile 'org.java-websocket:Java-WebSocket:1.3.0'
compile 'com.squareup:otto:1.3.5'
compile 'nl.qbusict:cupboard:2.0.1'
compile 'com.github.gabrielemariotti.changeloglib:library:1.5.1'
}