-
Notifications
You must be signed in to change notification settings - Fork 71
/
build.gradle
76 lines (64 loc) · 1.65 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.0.0-rc4'
}
}
repositories {
mavenCentral()
}
apply plugin: 'android'
apply from: 'libraries/kvj-android.gradle'
android {
compileSdkVersion 19
buildToolsVersion '19.1.0'
defaultConfig {
}
androidAutoVersion(defaultConfig, "2.7.")
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
compile project(':Lima1')
compile project(':emulatorview')
compile project(':aFileChooser')
compile project(':BasePlugin')
compile 'com.android.support:appcompat-v7:20.0.+'
}
// NOTE: We are using the old folder structure to also support Eclipse
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
jni.srcDirs = []
jniLibs.srcDirs = [ 'libs' ]
}
}
signingConfigs {
debug {
}
release {
}
}
androidSetupSignConfig(signingConfigs.debug)
// androidSetupSignConfig(signingConfigs.release)
buildTypes {
debug {
signingConfig signingConfigs.debug
debuggable true
jniDebuggable true
}
release {
signingConfig signingConfigs.release
}
}
// Do not abort build if lint finds errors
lintOptions {
abortOnError false
}
}