From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 0ED1985C8F for ; Tue, 21 Dec 2021 10:25:25 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id ECCC3272DD for ; Tue, 21 Dec 2021 10:25:24 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id 13E81272CF for ; Tue, 21 Dec 2021 10:25:24 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id B818C451D9 for ; Tue, 21 Dec 2021 10:25:17 +0100 (CET) Message-ID: <01a3aed3-6d60-a768-4543-4d235130f6da@proxmox.com> Date: Tue, 21 Dec 2021 10:25:16 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.4.0 Content-Language: en-US To: Thomas Lamprecht , Proxmox VE development discussion References: <20211220153839.537253-1-a.lauterer@proxmox.com> From: Aaron Lauterer In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-SPAM-LEVEL: Spam detection results: 0 AWL 1.022 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment NICE_REPLY_A -2.012 Looks like a legit reply (A) 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. [android.com] Subject: Re: [pve-devel] [PATCH futter_frontend 1/2] fix android splash screen logo 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: , X-List-Received-Date: Tue, 21 Dec 2021 09:25:25 -0000 On 12/20/21 20:21, Thomas Lamprecht wrote: > On 20/12/2021 16:38, Aaron Lauterer wrote: >> The new splash screen that came with Android 12 has stricter rules >> regarding the size and form of the logo in the splash screen [0]. >> >> We do need to have a drawable that is a square with the logo / icon in >> the center. That means the current approach with the png image resulted >> in it being scaled to the full width and the circular mask cut if off. >> The result was a broken looking splash screen. >> >> I opted for the stacked variant of the logo and saved it as a vector >> drawable in the xml format that android wants. > > I'd like to have the original svg too, ideally with some (Android SDK) CLI > tool to convert it, or at least the steps described required for that. > > Please also just replace the content of the launch_background.xml drawable. Will do. If I don't find a CLI way to convert it, I'll document the steps. > >> >> [0] https://developer.android.com/guide/topics/ui/splash-screen >> >> Signed-off-by: Aaron Lauterer >> --- >> .../main/res/drawable/proxmox_splash_logo.xml | 69 +++++++++++++++++++ >> .../app/src/main/res/values-night/styles.xml | 2 +- >> android/app/src/main/res/values/styles.xml | 2 +- >> 3 files changed, 71 insertions(+), 2 deletions(-) >> create mode 100644 android/app/src/main/res/drawable/proxmox_splash_logo.xml >> > > >