From 58a3e4589823f61ec89ed4e709ed50d958733140 Mon Sep 17 00:00:00 2001 From: Torsten Grote Date: Thu, 30 Jun 2022 17:34:10 -0300 Subject: Fix wallet build by upgrading Kotlin/compose --- build.gradle | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle index 150d31f..0598741 100644 --- a/build.gradle +++ b/build.gradle @@ -1,15 +1,18 @@ buildscript { - ext.kotlin_version = '1.6.10' - ext.ktor_version = '2.0.1' - ext.nav_version = '2.5.0' - ext.material_version = '1.6.1' - ext.lifecycle_version = '2.4.1' - ext.constraintlayout_version = '2.1.4' - ext.junit_version = "4.13.2" - // check https://android-rebuilds.beuc.net/ for availability of free build tools - ext.build_tools_version = "30.0.3" - // should debug build types be minified with D8 as well? - ext.minify_debug = false + ext { + kotlin_version = '1.6.21' + ktor_version = '2.0.1' + nav_version = '2.5.0' + material_version = '1.6.1' + lifecycle_version = '2.4.1' + constraintlayout_version = '2.1.4' + compose_version = '1.2.0-rc02' + junit_version = "4.13.2" + // check https://android-rebuilds.beuc.net/ for availability of free build tools + build_tools_version = "30.0.3" + // should debug build types be minified with D8 as well? good for catching issues early + minify_debug = true + } repositories { google() mavenCentral() -- cgit v1.2.3