blob: 529c201cbed702656d107073cafb84faa055d90a [file] [log] [blame]
David Morrissey5e199562017-10-26 17:44:14 +01001apply plugin: 'com.android.library'
David Morrisseyb88717d2015-01-08 21:23:39 +00002
3group = 'com.davemorrissey.labs'
4archivesBaseName = 'subsampling-scale-image-view'
David Morrissey5e199562017-10-26 17:44:14 +01005version = '3.7.2'
David Morrisseyb88717d2015-01-08 21:23:39 +00006
yanghui943ca002014-06-06 13:10:17 +08007android {
David Morrisseyc930ef72017-11-02 18:27:22 +00008 compileSdkVersion 26
David Morrissey5e199562017-10-26 17:44:14 +01009
10 defaultConfig {
11 consumerProguardFiles 'proguard-rules.txt'
12 }
David Morrissey5e199562017-10-26 17:44:14 +010013}
14
15dependencies {
David Morrisseyc930ef72017-11-02 18:27:22 +000016 implementation 'com.android.support:support-annotations:27.0.0'
David Morrissey5e199562017-10-26 17:44:14 +010017}
18
19apply from: rootProject.file('release.gradle')