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

31 lines
792 B
Groovy
Raw Normal View History

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