apply plugin: 'com.android.application' android { compileSdkVersion 27 buildToolsVersion '25.0.0' defaultConfig { applicationId "github.daneren2005.dsub" minSdkVersion 14 targetSdkVersion 26 versionCode 202 versionName '5.4.4' setProperty("archivesBaseName", "DSub $versionName") resConfigs "de", "es", "fr", "hu", "nl", "pt-rPT", "ru", "sv" } buildTypes { release { minifyEnabled true shrinkResources true proguardFiles 'proguard.cfg' zipAlignEnabled true } fix { minifyEnabled true shrinkResources true proguardFiles 'proguard.cfg' zipAlignEnabled true } } productFlavors { floss { // FLOSS build (no proprietary libraries) } google { // FLOSS build + Google libraries // Adds ChromeCast support } } packagingOptions { exclude 'META-INF/beans.xml' } lintOptions { checkReleaseBuilds false } signingConfigs { debug { storeFile file('../debug.keystore') } } } dependencies { compile project(':Server Proxy') compile fileTree(include: ['*.jar'], dir: 'libs') compile 'com.android.support:support-v4:27.1.+' compile 'com.android.support:appcompat-v7:27.1.+' compile 'com.android.support:mediarouter-v7:27.1.+' compile 'com.android.support:recyclerview-v7:27.1.+' compile 'com.android.support:design:27.1.+' googleCompile 'com.google.android.gms:play-services-cast:8.1.0' compile 'com.sothree.slidinguppanel:library:3.0.0' compile 'de.hdodenhof:circleimageview:1.2.1' compile 'com.shehabic.droppy:Droppy:0.5.1@aar' 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' }