blob: 637efd5387cd9d542adae86ad8626afdc398f3ea [file] [log] [blame]
apply plugin: android.support.SupportLibraryPlugin
archivesBaseName = 'transition'
dependencies {
compile project(':support-annotations')
compile project(':support-v4')
androidTestCompile ("com.android.support.test:runner:${project.rootProject.ext.testRunnerVersion}") {
exclude module: 'support-annotations'
}
androidTestCompile ("com.android.support.test.espresso:espresso-core:${project.rootProject.ext.espressoVersion}") {
exclude module: 'support-annotations'
}
androidTestCompile 'org.mockito:mockito-core:1.9.5'
androidTestCompile 'com.google.dexmaker:dexmaker:1.2'
androidTestCompile 'com.google.dexmaker:dexmaker-mockito:1.2'
testCompile 'junit:junit:4.12'
}
android {
compileSdkVersion project.ext.currentSdk
defaultConfig {
minSdkVersion 14
}
sourceSets {
main.java.srcDirs = [
'base',
'api14',
'api18',
'src'
]
main.res.srcDirs = [
'res',
'res-public'
]
}
}
supportLibrary {
name 'Android Transition Support Library'
inceptionYear '2016'
description 'Android Transition Support Library'
}