blob: 3dcf04c1393d24312f498e2e82e9e1b7e73c3f50 [file] [log] [blame]
Aurimas Liutikas9697da72016-12-22 15:50:42 -08001apply plugin: android.support.SupportLibraryPlugin
Teng-Hui Zhu2c3c8bf2015-12-04 16:35:12 -08002
3dependencies {
Aurimas Liutikas1989c3c2017-07-05 14:44:09 -07004 api project(':support-vector-drawable')
5 api project(':support-core-ui')
6
Aurimas Liutikas9edca682017-07-25 09:12:35 -07007 androidTestImplementation libs.test_runner, { exclude module: 'support-annotations' }
8 androidTestImplementation libs.espresso_core, { exclude module: 'support-annotations' }
Teng-Hui Zhu2c3c8bf2015-12-04 16:35:12 -08009}
10
11android {
Teng-Hui Zhu2c3c8bf2015-12-04 16:35:12 -080012 defaultConfig {
Aurimas Liutikasf7513062017-01-05 13:02:27 -080013 minSdkVersion 14
Chet Haase09c0d7d2016-02-04 14:20:44 -080014 // This disables the builds tools automatic vector -> PNG generation
15 generatedDensities = []
Teng-Hui Zhu2c3c8bf2015-12-04 16:35:12 -080016 }
17
18 sourceSets {
Teng-Hui Zhu2c3c8bf2015-12-04 16:35:12 -080019 main.java.srcDir 'src'
Yigit Boyar02a9e8c2016-01-26 20:41:00 -080020 }
21
Teng-Hui Zhu2c3c8bf2015-12-04 16:35:12 -080022 aaptOptions {
23 additionalParameters "--no-version-vectors"
24 }
25
Teng-Hui Zhu22105702016-10-25 15:18:25 -070026 buildTypes.all {
27 consumerProguardFiles 'proguard-rules.pro'
28 }
Teng-Hui Zhu2c3c8bf2015-12-04 16:35:12 -080029}
30
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080031supportLibrary {
32 name 'Android Support AnimatedVectorDrawable'
33 inceptionYear '2015'
34 description 'Android Support AnimatedVectorDrawable'
Aurimas Liutikas45323dc2017-01-05 19:05:54 -080035}