X-Git-Url: https://git.ktnx.net/?p=mobile-ledger.git;a=blobdiff_plain;f=app%2Fbuild.gradle;h=732856c768c92700c01971cf4d07b06a31aeb92a;hp=ab808a84bb37ffe5b91c9e55008923762ec515b0;hb=e20e67bf08e669a39a128dbd4c11021b624bbdba;hpb=47051d6b9e078b86de1652d6fb91c4f2218ee57c diff --git a/app/build.gradle b/app/build.gradle index ab808a84..732856c7 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -23,8 +23,9 @@ android { applicationId "net.ktnx.mobileledger" minSdkVersion 22 targetSdkVersion 28 - versionCode 31 - versionName '0.12.0' + vectorDrawables.useSupportLibrary true + versionCode 33 + versionName '0.13.1' testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { @@ -45,6 +46,7 @@ android { } productFlavors { } + viewBinding.enabled = true } dependencies { @@ -63,4 +65,14 @@ dependencies { implementation 'com.fasterxml.jackson.module:jackson-modules-java8:2.10.2' implementation "androidx.navigation:navigation-fragment:$nav_version" implementation "androidx.navigation:navigation-ui:$nav_version" -} \ No newline at end of file +} + +allprojects { + gradle.projectsEvaluated { + tasks.withType(JavaCompile) { + options.compilerArgs << + "-Xlint:deprecation" << + "-Xlint:unchecked" + } + } +}