From aff19328174bb687cf1112e90dc06899a42ece03 Mon Sep 17 00:00:00 2001 From: jcesarmobile Date: Thu, 12 May 2022 19:09:55 +0200 Subject: [PATCH] feat(cli): set targetSDK to 32 in android-template --- android-template/variables.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android-template/variables.gradle b/android-template/variables.gradle index 2c907f115..fcae8c3e1 100644 --- a/android-template/variables.gradle +++ b/android-template/variables.gradle @@ -1,7 +1,7 @@ ext { minSdkVersion = 22 - compileSdkVersion = 31 - targetSdkVersion = 31 + compileSdkVersion = 32 + targetSdkVersion = 32 androidxActivityVersion = '1.4.0' androidxAppCompatVersion = '1.4.1' androidxCoordinatorLayoutVersion = '1.2.0'