30 lines
838 B
Groovy
30 lines
838 B
Groovy
|
|
apply plugin: 'com.android.application'
|
||
|
|
|
||
|
|
android {
|
||
|
|
compileSdkVersion 21
|
||
|
|
buildToolsVersion '23.0.2'
|
||
|
|
|
||
|
|
defaultConfig {
|
||
|
|
applicationId "beyondsoft.bewomitarbeiterapp"
|
||
|
|
minSdkVersion 18
|
||
|
|
targetSdkVersion 21
|
||
|
|
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 'com.android.support:appcompat-v7:21.0.3'
|
||
|
|
compile files('libs/gson-2.6.2.jar')
|
||
|
|
compile files('libs/ksoap2-android-assembly-3.6.0-jar-with-dependencies.jar')
|
||
|
|
compile 'com.octo.android.robospice:robospice:1.4.14'
|
||
|
|
compile project(":volley")
|
||
|
|
}
|