nani/app/app/build.gradle

build.gradle

1
apply plugin: 'com.android.application'
2
3
android {
4
    compileSdkVersion 29
5
    defaultConfig {
6
        applicationId "eu.lepiller.nani"
7
        minSdkVersion 15
8
        targetSdkVersion 29
9
        versionCode 9
10
        versionName "0.3.1.1"
11
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
12
    }
13
    buildTypes {
14
        release {
15
            minifyEnabled false
16
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
17
        }
18
    }
19
}
20
21
dependencies {
22
    implementation fileTree(dir: 'libs', include: ['*.jar'])
23
    implementation 'androidx.appcompat:appcompat:1.3.0'
24
    implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
25
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
26
    implementation 'androidx.preference:preference:1.1.1'
27
    implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
28
    implementation 'com.andree-surya:moji4j:1.0.0'
29
    implementation 'com.google.android:flexbox:2.0.1'
30
    implementation 'com.google.android.material:material:1.4.0'
31
    implementation project(path: ':furiganatextview')
32
    testImplementation 'junit:junit:4.12'
33
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
34
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
35
}
36