apply plugin: 'com.android.application' android { compileSdkVersion 23 buildToolsVersion "23.0.3" useLibrary 'org.apache.http.legacy' defaultConfig { applicationId "net.nullsum.audinaut" minSdkVersion 19 targetSdkVersion 23 versionCode 186 versionName '0.1.0' setProperty("archivesBaseName", "Audinaut $versionName") resConfigs "de", "es", "fr", "hu", "nl", "pt-rPT", "ru", "sv" } packagingOptions { exclude 'META-INF/beans.xml' } lintOptions { checkReleaseBuilds false warning 'InvalidPackage' } signingConfigs { debug { storeFile file('../debug.keystore') } } } dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') compile 'com.esotericsoftware:kryo:4.0.0' compile 'com.android.support:support-v4:23.4.+' compile 'com.android.support:appcompat-v7:23.4.+' compile 'com.android.support:mediarouter-v7:23.4.+' compile 'com.android.support:recyclerview-v7:23.4.+' compile 'com.android.support:design:23.4.+' compile 'com.sothree.slidinguppanel:library:3.0.0' compile 'de.hdodenhof:circleimageview:1.2.1' compile group: 'org.fourthline.cling', name: 'cling-core', version:'2.1.1' compile group: 'org.fourthline.cling', name: 'cling-support', version:'2.1.1' compile group: 'org.eclipse.jetty', name: 'jetty-server', version:'8.1.16.v20140903' compile group: 'org.eclipse.jetty', name: 'jetty-servlet', version:'8.1.16.v20140903' compile group: 'org.eclipse.jetty', name: 'jetty-client', version:'8.1.16.v20140903' }