2015-08-04 19:50:20 +02:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2015-08-04 20:59:01 +02:00
|
|
|
compileSdkVersion 21
|
2015-09-09 18:22:47 +02:00
|
|
|
buildToolsVersion "23.0.1"
|
2015-08-04 19:50:20 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 9
|
2015-08-04 20:24:53 +02:00
|
|
|
targetSdkVersion 21
|
2015-08-04 19:50:20 +02:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
compile project(":eclipse-compile:appcompat")
|
|
|
|
// compile 'com.android.support:appcompat-v7:22.2.1'
|
|
|
|
}
|