Sailesh Nepal | 7c5959b | 2016-02-20 16:12:30 -0800 | [diff] [blame] | 1 | apply plugin: 'com.android.application' |
| 2 | |
| 3 | android { |
| 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 | |
| 17 | dependencies { |
| 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 Yen | 39ce0eb | 2016-02-23 12:33:36 -0800 | [diff] [blame] | 31 | compile project(':contactscommon') |
| 32 | compile project(':incallui') |
| 33 | compile project(':phonecommon') |
Sailesh Nepal | 7c5959b | 2016-02-20 16:12:30 -0800 | [diff] [blame] | 34 | } |