Update gradle and build dependencies

Julien LepillerSat Apr 25 23:49:34+0200 2020

06f5bbe

Update gradle and build dependencies

app/build.gradle

11
apply plugin: 'com.android.application'
22
33
android {
4-
    compileSdkVersion 28
4+
    compileSdkVersion 29
55
    defaultConfig {
66
        applicationId "eu.lepiller.nani"
77
        minSdkVersion 15
8-
        targetSdkVersion 28
8+
        targetSdkVersion 29
99
        versionCode 1
1010
        versionName "0.1"
11-
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
11+
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1212
    }
1313
    buildTypes {
1414
        release {

2020
2121
dependencies {
2222
    implementation fileTree(dir: 'libs', include: ['*.jar'])
23-
    implementation 'com.android.support:appcompat-v7:28.0.0'
24-
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
25-
    implementation 'com.android.support:design:28.0.0'
23+
    implementation 'androidx.appcompat:appcompat:1.1.0'
24+
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
25+
    implementation 'com.google.android.material:material:1.1.0'
2626
    implementation 'com.andree-surya:moji4j:1.0.0'
2727
    implementation project(path: ':furiganatextview')
2828
    testImplementation 'junit:junit:4.12'
29-
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
30-
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
29+
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
30+
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
3131
}

build.gradle

11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
33
buildscript {
4-
    ext.kotlin_version = '1.3.20'
4+
    ext.kotlin_version = '1.3.71'
55
    repositories {
66
        google()
77
        jcenter()
8-
        
98
    }
109
    dependencies {
11-
        classpath 'com.android.tools.build:gradle:3.3.2'
10+
        classpath 'com.android.tools.build:gradle:3.6.3'
1211
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1312
1413
        // NOTE: Do not place your application dependencies here; they belong

2019
    repositories {
2120
        google()
2221
        jcenter()
23-
        
2422
    }
2523
}
2624

furiganatextview/build.gradle

22
apply plugin: 'kotlin-android'
33
44
android {
5-
    compileSdkVersion 28
5+
    compileSdkVersion 29
66
77
    defaultConfig {
88
        minSdkVersion 15
9-
        targetSdkVersion 28
9+
        targetSdkVersion 29
1010
        versionCode 1
1111
        versionName "1.0"
1212
    }

2121
dependencies {
2222
    implementation fileTree(dir: 'libs', include: ['*.jar'])
2323
    testImplementation 'junit:junit:4.12'
24-
    implementation 'com.android.support:appcompat-v7:28.0.0'
24+
    implementation 'androidx.appcompat:appcompat:1.1.0'
2525
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
2626
}
2727
repositories {