24 lines
562 B
Groovy
24 lines
562 B
Groovy
apply plugin: 'com.android.library'
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion "25.0.0"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 14
|
|
targetSdkVersion 4
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
provided 'com.android.support:appcompat-v7:25.0.0'
|
|
compile('com.github.chrisbanes:PhotoView:1.3.0') {
|
|
exclude group: 'com.android.support', module: 'support-v4'
|
|
}
|
|
} |