-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
54 lines (46 loc) · 1.16 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.12.+'
}
}
apply plugin: 'android'
repositories {
mavenCentral()
flatDir {
dirs 'libs'
}
}
dependencies {
compile name: 'android-library', ext: 'aar'
compile fileTree(dir: 'libs', include: '*.jar')
compile 'com.mcxiaoke.volley:library:1.0.6'
compile 'com.android.support:support-v4:19.0.+'
compile 'de.keyboardsurfer.android.widget:crouton:1.8.5'
compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'
}
android {
compileSdkVersion 20
buildToolsVersion "20"
defaultConfig {
minSdkVersion 8
targetSdkVersion 20
}
signingConfigs {
release {
storeFile file("release.jks")
keyAlias "app"
storePassword System.console().readLine("\nZauberspruch: ")
keyPassword System.console().readLine("\nZauberspruch again: ")
}
}
buildTypes {
release {
runProguard true
proguardFiles 'proguard-rules.txt'
signingConfig signingConfigs.release
}
}
}