From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate001.proxmox.com (gate001.proxmox.com [45.144.208.40]) by lore.proxmox.com (Postfix) with ESMTPS id C94681FF0E1 for ; Thu, 27 Aug 2026 12:40:39 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id 2ED0D214DA; Thu, 27 Aug 2026 12:40:39 +0200 (CEST) Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Thu, 27 Aug 2026 12:40:35 +0200 Message-Id: Subject: Re: [PATCH flutter-frontend v3 2/3] fix #4281: android: set taskAffinity="" on MainActivity From: "Shan Shaji" To: "Azharul Haque" , X-Mailer: aerc 0.20.0 References: <20260810144713.75806-1-haque@azharul.com> <20260821034147.30194-1-haque@azharul.com> <20260821034147.30194-10-haque@azharul.com> In-Reply-To: <20260821034147.30194-10-haque@azharul.com> X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1787827227373 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.491 Adjusted score from AWL reputation of From: address DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment (newer systems) RCVD_IN_DNSWL_MED -2.3 Sender listed at https://www.dnswl.org/, medium trust 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: 5B25WTKNC7O62VDIDJA2Q5IRDNL3AEDY X-Message-ID-Hash: 5B25WTKNC7O62VDIDJA2Q5IRDNL3AEDY 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: Hi Azharul, I have factored out this change and send it as a separate patch [0]. Hope that is okay? you can drop this for v4. - [0] https://lore.proxmox.com/pve-devel/20260827103615.178000-1-s.shaji@pr= oxmox.com/T/#u On Fri Aug 21, 2026 at 5:41 AM CEST, Azharul Haque wrote: > Recommended by flutter_web_auth_2 for the version this project uses, > to avoid a stray task appearing after the OpenID callback returns > control to MainActivity once the CallbackActivity added in the > following commit hands off. Harmless on its own ahead of that, since > there is currently only ever one activity in this app's task. > > Signed-off-by: Azharul Haque > --- > android/app/src/main/AndroidManifest.xml | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/m= ain/AndroidManifest.xml > index 66135eb..654f13d 100644 > --- a/android/app/src/main/AndroidManifest.xml > +++ b/android/app/src/main/AndroidManifest.xml > @@ -12,6 +12,7 @@ > android:name=3D"com.proxmox.app.pve_flutter_frontend.MainAct= ivity" > android:exported=3D"true" > android:launchMode=3D"singleTop" > + android:taskAffinity=3D"" > android:theme=3D"@style/LaunchTheme" > android:configChanges=3D"orientation|keyboardHidden|keyboard= |screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" > android:hardwareAccelerated=3D"true"