apply plugin: 'com.android.application' android { compileSdkVersion 28 buildToolsVersion "28.0.3" defaultConfig { applicationId "be.digitalia.fosdem" minSdkVersion 16 targetSdkVersion 28 versionCode 1600162 versionName "1.6.2" // Supported languages resConfigs "en" vectorDrawables.useSupportLibrary = true } buildTypes { release { postprocessing { removeUnusedCode true removeUnusedResources true obfuscate true optimizeCode true proguardFiles 'proguard-rules.pro' } } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } } dependencies { def room_version = "2.1.0-alpha06" implementation 'androidx.appcompat:appcompat:1.1.0-alpha04' implementation 'com.google.android.material:material:1.0.0' implementation 'androidx.recyclerview:recyclerview:1.1.0-alpha04' implementation 'androidx.cardview:cardview:1.0.0' implementation 'androidx.preference:preference:1.1.0-alpha04' implementation 'androidx.browser:browser:1.0.0' implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0-alpha04' implementation 'androidx.paging:paging-runtime:2.1.0' implementation "androidx.room:room-runtime:$room_version" annotationProcessor "androidx.room:room-compiler:$room_version" implementation 'com.github.chrisbanes:PhotoView:2.3.0' }