forked from guardianproject/cacheword
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (29 loc) · 768 Bytes
/
Copy pathbuild.gradle
File metadata and controls
36 lines (29 loc) · 768 Bytes
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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.0.0'
}
}
apply plugin: 'com.android.library'
dependencies {
compile 'com.android.support:support-v4:22.0.0'
}
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
minSdkVersion 9
targetSdkVersion 22
}
sourceSets.main {
manifest.srcFile 'cachewordlib/AndroidManifest.xml'
java.srcDirs = ['cachewordlib/src']
resources.srcDirs = ['cachewordlib/src']
aidl.srcDirs = ['cachewordlib/src']
renderscript.srcDirs = ['cachewordlib/src']
res.srcDirs = ['cachewordlib/res']
assets.srcDirs = ['cachewordlib/assets']
}
}