blob: 9e24136ae3d77f1d6873a1a10e31277345323e9e [file] [log] [blame]
Sailesh Nepal7c5959b2016-02-20 16:12:30 -08001apply plugin: 'com.android.application'
2
3android {
4 defaultConfig {
5 minSdkVersion 23
6 targetSdkVersion 23
7 multiDexEnabled true
8 }
9
10 sourceSets.main {
11 java.srcDirs = ['src', 'src-pre-N', 'InCallUI/src']
12 manifest.srcFile 'AndroidManifest.xml'
13 res.srcDirs = ['res']
14 }
15}
16
17dependencies {
18 compile 'com.android.support:support-v4:23.1.+'
19 compile 'com.android.support:support-v13:23.1.+'
20 compile 'com.android.support:appcompat-v7:23.1.+'
21 compile 'com.android.support:cardview-v7:23.1.+'
22 compile 'com.android.support:design:23.1.+'
23 compile 'com.android.support:recyclerview-v7:23.1.+'
24
25 compile project(':android-common')
26 compile project(':guava')
27 compile project(':libphonenumber')
28 compile project(':jsr305')
29 compile project(':vcard')
30
Ta-wei Yen39ce0eb2016-02-23 12:33:36 -080031 compile project(':contactscommon')
32 compile project(':incallui')
33 compile project(':phonecommon')
Sailesh Nepal7c5959b2016-02-20 16:12:30 -080034}