1
0
Fork 0
mirror of https://github.com/MatomoCamp/matomocamp-companion-android.git synced 2024-09-19 16:13:46 +02:00

upgrade AndroidX libraries to their new stable versions and remove the build tools version from the build.gradle file

This commit is contained in:
Christophe Beyls 2019-09-05 21:41:25 +02:00
parent 9cb9612ea7
commit 118e5c050e

View file

@ -2,7 +2,6 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion 28
buildToolsVersion "28.0.3"
defaultConfig {
applicationId "be.digitalia.fosdem"
@ -36,13 +35,13 @@ android {
dependencies {
def room_version = "2.1.0"
implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.1.0-beta03'
implementation 'androidx.recyclerview:recyclerview:1.1.0-beta04'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.preference:preference:1.1.0-rc01'
implementation 'androidx.preference:preference:1.1.0'
implementation 'androidx.browser:browser:1.0.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0-rc01'
implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0'
implementation 'androidx.paging:paging-runtime:2.1.0'
implementation "androidx.room:room-runtime:$room_version"
annotationProcessor "androidx.room:room-compiler:$room_version"