| apply plugin: android.support.SupportAndroidLibraryPlugin |
| |
| dependencies { |
| api project(':support-compat') |
| api project(':support-core-ui') |
| api project(':support-media-compat') |
| api project(':support-fragment') |
| api project(':recyclerview-v7') |
| |
| androidTestImplementation libs.test_runner, { exclude module: 'support-annotations' } |
| androidTestImplementation libs.espresso_core, { exclude module: 'support-annotations' } |
| androidTestImplementation libs.mockito_core, { exclude group: 'net.bytebuddy' } // DexMaker has it"s own MockMaker |
| androidTestImplementation libs.dexmaker_mockito, { exclude group: 'net.bytebuddy' } // DexMaker has it"s own MockMaker |
| } |
| |
| android { |
| defaultConfig { |
| minSdkVersion 17 |
| } |
| |
| sourceSets { |
| main.java.srcDirs = [ |
| 'common', |
| 'jbmr2', |
| 'kitkat', |
| 'api21', |
| 'src' |
| ] |
| main.res.srcDir 'res' |
| } |
| } |
| |
| supportLibrary { |
| name 'Android Support Leanback v17' |
| publish true |
| inceptionYear '2014' |
| description 'Android Support Leanback v17' |
| } |