Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiedermann IT-Dienstleistungen <info@niedermann.it>2018-11-04 14:18:12 +0300
committerNiedermann IT-Dienstleistungen <stefan-niedermann@users.noreply.github.com>2019-02-06 19:20:04 +0300
commitf03bd967d354d074e1515f56fe6aea680aeac9e7 (patch)
treea205ff946870d28ea2730074f548a688d70073bb /app/build.gradle
parent81c881d5a6c6432d93014545b958c7d97e7da7d3 (diff)
Migrate to AndroidX
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle12
1 files changed, 5 insertions, 7 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 547df6fa..f1043628 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion 28
- buildToolsVersion '27.0.3'
+ buildToolsVersion '28.0.3'
defaultConfig {
applicationId "it.niedermann.owncloud.notes"
@@ -34,12 +34,10 @@ dependencies {
implementation 'com.jakewharton:butterknife:8.8.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
- def supportLibVersion = '28.0.0'
-
- implementation "com.android.support:appcompat-v7:${supportLibVersion}"
- implementation "com.android.support:design:${supportLibVersion}"
- implementation "com.android.support:recyclerview-v7:${supportLibVersion}"
+ implementation 'androidx.appcompat:appcompat:1.0.0'
+ implementation 'com.google.android.material:material:1.1.0-alpha01'
+ implementation 'androidx.recyclerview:recyclerview:1.0.0'
// needed for cert4android (conflict resolution)
- implementation "com.android.support:cardview-v7:${supportLibVersion}"
+ implementation 'androidx.cardview:cardview:1.0.0'
implementation fileTree(dir: 'libs', include: ['*.jar'])
}