blob: 57d1837e72625f7bfa83d13bafd94968b393256e [file] [log] [blame]
Aurimas Liutikas9697da72016-12-22 15:50:42 -08001apply plugin: android.support.SupportLibraryPlugin
Yuichi Arakic876cd82016-02-05 14:39:00 +09002
3archivesBaseName = 'transition'
4
5dependencies {
Alan Viverette9439d702016-10-25 14:45:10 +01006 compile project(':support-annotations')
7 compile project(':support-v4')
Yuichi Arakic876cd82016-02-05 14:39:00 +09008
Aurimas Liutikasf09d8582017-01-20 21:49:51 -08009 androidTestCompile (libs.test_runner) {
Yuichi Arakic876cd82016-02-05 14:39:00 +090010 exclude module: 'support-annotations'
11 }
Aurimas Liutikasf09d8582017-01-20 21:49:51 -080012 androidTestCompile (libs.espresso_core) {
Yuichi Arakic876cd82016-02-05 14:39:00 +090013 exclude module: 'support-annotations'
14 }
Yuichi Arakie68550d2017-01-26 12:37:51 +090015 androidTestCompile libs.mockito_core
16 androidTestCompile libs.dexmaker
17 androidTestCompile libs.dexmaker_mockito
Yuichi Arakic876cd82016-02-05 14:39:00 +090018}
19
20android {
Yuichi Arakic876cd82016-02-05 14:39:00 +090021 defaultConfig {
22 minSdkVersion 14
Yuichi Arakic876cd82016-02-05 14:39:00 +090023 }
24
25 sourceSets {
Alan Viverette9439d702016-10-25 14:45:10 +010026 main.java.srcDirs = [
27 'base',
Yuichi Araki4e5a7272016-12-01 16:50:32 +090028 'api14',
29 'api18',
Yuichi Arakia6f2ebe2017-01-17 17:41:46 +090030 'api19',
Yuichi Araki317d4bb2017-01-27 14:27:29 +090031 'api21',
Alan Viverette9439d702016-10-25 14:45:10 +010032 'src'
33 ]
34 main.res.srcDirs = [
35 'res',
36 'res-public'
37 ]
Yuichi Arakic876cd82016-02-05 14:39:00 +090038 }
Yuichi Araki81580512017-02-09 15:55:53 +090039
40 aaptOptions {
41 additionalParameters "--no-version-transitions"
42 }
Yuichi Arakic876cd82016-02-05 14:39:00 +090043}
44
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080045supportLibrary {
46 name 'Android Transition Support Library'
47 inceptionYear '2016'
48 description 'Android Transition Support Library'
49}