blob: ef019ed3563ba2975580614ad2734ced89160959 (
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
30
31
32
33
34
|
apply plugin: 'com.android.application'
android {
defaultConfig {
minSdkVersion 23
targetSdkVersion 23
multiDexEnabled true
}
sourceSets.main {
java.srcDirs = ['src', 'src-pre-N', 'InCallUI/src']
manifest.srcFile 'AndroidManifest.xml'
res.srcDirs = ['res']
}
}
dependencies {
compile 'com.android.support:support-v4:23.1.+'
compile 'com.android.support:support-v13:23.1.+'
compile 'com.android.support:appcompat-v7:23.1.+'
compile 'com.android.support:cardview-v7:23.1.+'
compile 'com.android.support:design:23.1.+'
compile 'com.android.support:recyclerview-v7:23.1.+'
compile project(':android-common')
compile project(':guava')
compile project(':libphonenumber')
compile project(':jsr305')
compile project(':vcard')
compile project(':ContactsCommon')
compile project(':InCallUI')
compile project(':PhoneCommon')
}
|