blob: cee6723c2ee32b8541d753461893e03dfdd4e94d [file] [log] [blame]
Sailesh Nepalb1361f92016-02-20 21:17:32 -08001apply plugin: 'com.android.library'
2
3android {
4 sourceSets.main {
5 java.srcDirs = ['src', 'src-pre-N']
6 manifest.srcFile 'AndroidManifest.xml'
7 res.srcDirs = ['res']
8 }
9}
10
11dependencies {
12 compile 'com.android.support:support-v4:23.1.+'
13 compile 'com.android.support:appcompat-v7:23.1.+'
14
15 compile project(':android-common')
16 compile project(':guava')
17 compile project(':libphonenumber')
18 compile project(':jsr305')
19 compile project(':vcard')
20
Ta-wei Yen187123c2016-02-23 12:35:17 -080021 compile project(':phonecommon')
Sailesh Nepalb1361f92016-02-20 21:17:32 -080022}