OsmAnd/eclipse-compile/cardview/build.gradle

23 lines
439 B
Groovy
Raw Normal View History

2015-08-11 15:46:31 +02:00
apply plugin: 'com.android.library'
android {
compileSdkVersion 21
2015-09-09 18:22:47 +02:00
buildToolsVersion "23.0.1"
2015-08-11 15:46:31 +02:00
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')
}