From 26cce68d6a3441154555228192308d519aa4c644 Mon Sep 17 00:00:00 2001 From: pacien Date: Mon, 2 Jan 2023 01:18:36 +0100 Subject: deps: target sdk 30 -> 32 The Google Play Store requires targetting >=API 31. --- app/build.gradle | 6 +++--- app/src/main/AndroidManifest.xml | 11 +++++++---- readme.md | 6 +++--- 3 files changed, 13 insertions(+), 10 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 7530fa3..89a3299 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,6 +1,6 @@ /* * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2017-2021 Pacien TRAN-GIRARD + * Copyright (C) 2017-2023 Pacien TRAN-GIRARD * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -30,12 +30,12 @@ def keystoreProperties = new Properties() if (keystoreAvailable) keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) android { - compileSdkVersion 30 + compileSdkVersion 32 defaultConfig { applicationId 'org.pacien.tincapp' minSdkVersion 21 - targetSdkVersion 30 + targetSdkVersion 32 multiDexEnabled true versionCode 33 versionName '0.33' diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index c98555f..662af62 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -2,7 +2,7 @@