23 lines
439 B
Groovy
23 lines
439 B
Groovy
|
apply plugin: 'com.android.library'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 21
|
||
|
buildToolsVersion "21.1.2"
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion 7
|
||
|
targetSdkVersion 21
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile files('libs/android-support-v7-cardview.jar')
|
||
|
}
|