1apply plugin: 'com.android.application' 2 3android { 4 compileSdkVersion 23 5 buildToolsVersion "23.0.2" 6 7 defaultConfig { 8 applicationId "turri.fr.jiso8601_android_no_reg" 9 minSdkVersion 14 10 targetSdkVersion 23 11 versionCode 1 12 versionName "1.0" 13 } 14 buildTypes { 15 release { 16 minifyEnabled false 17 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 18 } 19 } 20} 21 22dependencies { 23 compile fileTree(dir: 'libs', include: ['*.jar']) 24 testCompile 'junit:junit:4.12' 25 compile 'com.android.support:appcompat-v7:23.1.1' 26 compile 'fr.turri:jISO8601:0.2' 27 testCompile 'com.github.tomakehurst:wiremock:1.58' 28} 29