From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id 51BFB1FF183 for ; Wed, 2 Jul 2025 11:11:05 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 06C9615ED6; Wed, 2 Jul 2025 11:11:43 +0200 (CEST) From: Shan Shaji To: pve-devel@lists.proxmox.com Date: Wed, 2 Jul 2025 11:10:56 +0200 Message-Id: <20250702091056.60732-1-s.shaji@proxmox.com> X-Mailer: git-send-email 2.39.5 MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.035 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment KAM_NUMSUBJECT 0.5 Subject ends in numbers excluding current years KAM_SHORT 0.001 Use of a URL Shortener for very short URL RCVD_IN_VALIDITY_CERTIFIED_BLOCKED 0.232 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. RCVD_IN_VALIDITY_RPBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. RCVD_IN_VALIDITY_SAFE_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [pub.dev] Subject: [pve-devel] [PATCH pve_flutter_frontend v1] chore: update `compileSdkVersion` to 35 and `targetSdkVersion` to 36 X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Proxmox VE development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pve-devel-bounces@lists.proxmox.com Sender: "pve-devel" The current target API level is 34(Android 14). According to google play requirements the target API level should be within one year of latest Android release. To fix the issue update `compileSdkVersion` to 35 (Android 15) and `targetSdkVersion` to API level 36 (Android 16). The `compileSdkVersion` was not updated to API level 36 as `biometric_storage` [5] plugin's compileSdk is 35. Plugins (pve_flutter_frontend): - flutter_inappwebview [0] - shared_preference [1] - path_provider [2] - url_launcher [3] Plugins (proxmox_login_manager): - shared_preference [4] - biometric_storage [5] [0] - https://pub.dev/packages/flutter_inappwebview/versions/6.0.0#requirements [1] - https://pub.dev/packages/shared_preferences/versions/2.3.4 [2] - https://pub.dev/packages/path_provider/versions/2.1.5 [3] - https://pub.dev/packages/url_launcher/versions/6.3.1 [4] - https://pub.dev/packages/shared_preferences/versions/2.2.3 [5] - https://github.com/authpass/biometric_storage/blob/63c3dc3cd74729c78e4fc2de54b36e0db9540cbf/android/build.gradle#L34 Signed-off-by: Shan Shaji --- The version was updated as we received an email from Google play to update the target API level and release a new version before 31st August 2025. The exact versions of the plugins are taken from the `.lock` file as we are using the caret versioning for our dependencies in `pubspec.yaml`. android/app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index bcb364d..a749e46 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -44,7 +44,7 @@ def keystoreSecret = System.getenv('PROXMOX_APP_KEYSTORE_SECRET') : keystoreProperties['keyPassword'] android { - compileSdkVersion 34 + compileSdkVersion 35 namespace "com.proxmox.app.pve_flutter_frontend" sourceSets { @@ -55,7 +55,7 @@ android { defaultConfig { applicationId namespace minSdkVersion 23 - targetSdkVersion 34 + targetSdkVersion 36 versionCode flutterVersionCode.toInteger() versionName flutterVersionName testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" -- 2.39.5 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel