nani/app/app/build.gradle

build.gradle

1
apply plugin: 'com.android.application'
2
3
android {
4
    compileSdkVersion 33
5
    defaultConfig {
6
        applicationId "eu.lepiller.nani"
7
        minSdkVersion 15
8
        targetSdkVersion 33
9
        versionCode 16
10
        versionName "0.5.2"
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.5.0'
24
    implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
25
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
26
    implementation 'androidx.preference:preference:1.2.0'
27
    implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
28
    implementation "androidx.viewpager2:viewpager2:1.0.0"
29
    implementation 'com.andree-surya:moji4j:1.2.0'
30
    implementation 'com.google.android.flexbox:flexbox:3.0.0'
31
    implementation 'com.google.android.material:material:1.6.1'
32
33
    implementation 'androidx.lifecycle:lifecycle-viewmodel:2.5.1' // force dependency
34
    implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1' // force dependency
35
36
    implementation project(path: ':rubytextview')
37
    testImplementation 'junit:junit:4.13.2'
38
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
39
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
40
}
41