From ed2d5e3b2d2522a96cdd91bdbd524ef3bf9e5620 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Thu, 7 Jan 2021 12:46:43 +0100 Subject: [PATCH] [simulator/android] Bump targetSdkVersion --- ion/src/simulator/android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ion/src/simulator/android/build.gradle b/ion/src/simulator/android/build.gradle index 8dfcf965a..5de311bce 100644 --- a/ion/src/simulator/android/build.gradle +++ b/ion/src/simulator/android/build.gradle @@ -36,7 +36,7 @@ android { defaultConfig { applicationId "com.numworks.calculator" minSdkVersion 16 - targetSdkVersion 28 + targetSdkVersion 29 def (major, minor, patch) = System.getenv('EPSILON_VERSION').toLowerCase().tokenize('.').collect{it.toInteger()} versionCode major*1000000 + minor*10000 + patch * 100 versionName System.getenv('EPSILON_VERSION')