mirror of
https://github.com/Evolution-X/external_FadingEdgeLayout
synced 2026-02-01 08:15:57 +00:00
23 lines
435 B
Groovy
23 lines
435 B
Groovy
|
|
apply plugin: 'com.android.library'
|
||
|
|
|
||
|
|
android {
|
||
|
|
compileSdkVersion 25
|
||
|
|
buildToolsVersion "25.0.2"
|
||
|
|
|
||
|
|
defaultConfig {
|
||
|
|
minSdkVersion 9
|
||
|
|
targetSdkVersion 25
|
||
|
|
}
|
||
|
|
|
||
|
|
buildTypes {
|
||
|
|
release {
|
||
|
|
minifyEnabled false
|
||
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
compile 'com.android.support:appcompat-v7:25.1.0'
|
||
|
|
}
|