]> git.ktnx.net Git - mobile-ledger.git/blob - app/build.gradle
first step towards pattern-assisted auto-filling of transactions
[mobile-ledger.git] / app / build.gradle
1 /*
2  * Copyright © 2021 Damyan Ivanov.
3  * This file is part of MoLe.
4  * MoLe is free software: you can distribute it and/or modify it
5  * under the term of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your opinion), any later version.
8  *
9  * MoLe is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License terms for details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with MoLe. If not, see <https://www.gnu.org/licenses/>.
16  */
17
18 apply plugin: 'com.android.application'
19
20 android {
21     compileSdkVersion 29
22     defaultConfig {
23         applicationId "net.ktnx.mobileledger"
24         minSdkVersion 22
25         targetSdkVersion 29
26         vectorDrawables.useSupportLibrary true
27         versionCode 37
28         versionName '0.16.0'
29         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
30     }
31     buildTypes {
32         release {
33             minifyEnabled false
34             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
35         }
36         debug {
37             versionNameSuffix '-debug'
38             applicationIdSuffix '.debug'
39         }
40     }
41     sourceSets { main { assets.srcDirs = ['src/main/assets', 'src/main/assets/'] } }
42     buildToolsVersion '29.0.3'
43     compileOptions {
44         sourceCompatibility JavaVersion.VERSION_1_8
45         targetCompatibility JavaVersion.VERSION_1_8
46     }
47     productFlavors {
48     }
49     buildFeatures.viewBinding = true
50 }
51
52 dependencies {
53     implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.2.0'
54     implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0'
55     def nav_version = '2.3.1'
56     implementation fileTree(include: ['*.jar'], dir: 'libs')
57     implementation 'androidx.legacy:legacy-support-v4:1.0.0'
58     implementation 'com.google.android.material:material:1.3.0-alpha04'
59     implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
60     implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
61     implementation 'androidx.recyclerview:recyclerview:1.1.0'
62     testImplementation 'junit:junit:4.13.1'
63     androidTestImplementation 'androidx.test:runner:1.3.1-alpha02'
64     androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0-alpha02'
65     implementation 'org.jetbrains:annotations:15.0'
66     implementation 'com.fasterxml.jackson.module:jackson-modules-java8:2.11.3'
67     implementation "androidx.navigation:navigation-fragment:$nav_version"
68     implementation "androidx.navigation:navigation-ui:$nav_version"
69     implementation 'androidx.appcompat:appcompat:1.3.0-alpha02'
70 }
71
72 allprojects {
73     gradle.projectsEvaluated {
74         tasks.withType(JavaCompile) {
75             options.compilerArgs <<
76                     "-Xlint:deprecation" <<
77                     "-Xlint:unchecked"
78         }
79     }
80 }