blob: 7ca4741a0f477d542414444520fa9cf4695fbd9b (
plain)
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
|
apply plugin: 'com.android.application'
android {
compileSdkVersion 19
buildToolsVersion "21.1"
defaultConfig {
minSdkVersion 9
targetSdkVersion 19
versionName "1.2"
versionCode 3
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}
}
}
dependencies {
// The dependency to the ICalnder interface from the main project is missing
// compile project(":main") is not working
}
|