blob: 28b5f99b0cf45385bf88248fcdaaf3d0c3525e33 [file] [log] [blame]
import android.support.LibraryGroups
import android.support.LibraryVersions
plugins {
id("SupportAndroidLibraryPlugin")
}
dependencies {
api project(':support-compat')
api project(':support-annotations')
androidTestImplementation libs.test_runner, { exclude module: 'support-annotations' }
androidTestImplementation libs.espresso_core, { exclude module: 'support-annotations' }
androidTestImplementation project(':support-testutils')
}
android {
defaultConfig {
minSdkVersion 15
}
sourceSets {
main.aidl.srcDirs = ['src/main/java']
}
}
supportLibrary {
name = "Android Support Custom Tabs"
publish = true
mavenVersion = LibraryVersions.SUPPORT_LIBRARY
mavenGroup = LibraryGroups.SUPPORT
inceptionYear = "2015"
description = "Android Support Custom Tabs"
legacySourceLocation = true
}