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 { minifyEnabled true shrinkResources true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { def room_version = "2.1.0-alpha04" implementation 'androidx.appcompat:appcompat:1.0.2' implementation 'com.google.android.material:material:1.0.0' implementation 'androidx.recyclerview:recyclerview:1.0.0' implementation 'androidx.cardview:cardview:1.0.0' implementation('androidx.preference:preference:1.1.0-alpha02') { // Alpha versions of these dependencies are unstable exclude group: 'androidx.fragment', module: 'fragment' exclude group: 'androidx.core', module: 'core' } implementation 'androidx.browser:browser:1.0.0' implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0' 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' }