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 B56A01FF140 for ; Fri, 10 Apr 2026 17:09:15 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 9025F20DDE; Fri, 10 Apr 2026 17:10:00 +0200 (CEST) From: Shan Shaji To: pve-devel@lists.proxmox.com Subject: [PATCH pve_flutter_frontend 4/4] chore: use latest ndkVersion from flutter Date: Fri, 10 Apr 2026 17:09:32 +0200 Message-ID: <20260410150935.25870-5-s.shaji@proxmox.com> X-Mailer: git-send-email 2.50.1 In-Reply-To: <20260410150935.25870-1-s.shaji@proxmox.com> References: <20260410150935.25870-1-s.shaji@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1775833721165 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.154 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 SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: BSNGZZWFUI2C2HWI46FBVTENZHEYAGDT X-Message-ID-Hash: BSNGZZWFUI2C2HWI46FBVTENZHEYAGDT X-MailFrom: s.shaji@proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: If ndkVersion is not specified, the following warning will be thrown while building the app: > Your project is configured with Android NDK 27.0.12077973, but the > following plugin(s) depend on a different Android NDK version: > - jni requires Android NDK 28.2.13676358 > Fix this issue by using the highest Android NDK version (they are > backward compatible). > android { > ndkVersion = "28.2.13676358" > ... > } Signed-off-by: Shan Shaji --- android/app/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/android/app/build.gradle b/android/app/build.gradle index 2475f71..c9fd32e 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -45,6 +45,7 @@ def keystoreSecret = System.getenv('PROXMOX_APP_KEYSTORE_SECRET') android { compileSdkVersion 36 + ndkVersion flutter.ndkVersion namespace "com.proxmox.app.pve_flutter_frontend" sourceSets { -- 2.50.1