AntennaPod/library/drag-sort-listview/build.gradle

31 lines
670 B
Groovy
Raw Normal View History

2015-03-14 15:19:06 +01:00
apply plugin: 'com.android.library'
android {
compileSdkVersion 21
2015-03-14 15:19:06 +01:00
buildToolsVersion "21.1.2"
defaultConfig {
minSdkVersion 10
targetSdkVersion 21
2015-03-14 15:19:06 +01:00
versionCode 4
versionName "0.6.1"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:support-v4:21.0.3'
2015-03-14 15:19:06 +01:00
}