diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2024-06-28 12:13:45 +0200 |
---|---|---|
committer | Adolfo Jayme Barrientos <fitojb@ubuntu.com> | 2024-06-28 23:06:40 +0200 |
commit | 89834ae1ec20fb7c242e697966037e925e1d44f1 (patch) | |
tree | ba0abfd8f215504d37bfee8bff1b8d338d3dd28b /android | |
parent | bc5ee63d4bbb73b2f574e7002da4aa4b142b03ac (diff) |
tdf#157009 android: Add missing subdir for Triple-T/F-Droid icon
Even with
commit 69189de8fa9a9d4973a4304a82780d32e79fbe6f
Author: Michael Weghorn <m.weghorn@posteo.de>
Date: Thu May 16 09:26:44 2024 +0200
tdf#157009 android: Add icon symlink for F-Droid
(and its 24-2 backport) in place, the icon is not shown
for LibreOffice Viewer in the F-Droid app and on the repo
website [1].
Revisiting the related specs [2] [3], it turns out
that the icon needs to be in an "icon" subdir in the
"graphics" directory, so add that missing "icon" subdir
and move the symlink there.
From [2]:
> └── listings
> ├── en-US (en-US is the default locale in F-Droid)
> │ ├── title.txt (app name)
> │ ├── short-description.txt (short description, max 80 chars, mandatory)
> │ ├── full-description.txt (full app description, mandatory)
> │ ├── video-url.txt (URL to a video introducing the app)
> │ ├── whatsnew (alternative changelog location; single file, no .txt)
> │ └── graphics
> │ ├── icon (app icon; mandatory if your app doesn't include any png icon)
> │ │ └── *.(png|jpg) 1 image, usually 512x512
[1] https://f-droid.org/en/packages/org.documentfoundation.libreoffice/
[2] https://f-droid.org/en/docs/All_About_Descriptions_Graphics_and_Screenshots/#triple-t-structure
[3] https://github.com/Triple-T/gradle-play-publisher?tab=readme-ov-file#uploading-graphic-based-listings
Change-Id: I43c23040bf63a34f8f9648b45fab6c47a8816b8d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169677
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Tested-by: Jenkins
Diffstat (limited to 'android')
l--------- | android/source/src/main/play/listings/en-US/graphics/icon.png | 1 | ||||
l--------- | android/source/src/main/play/listings/en-US/graphics/icon/icon.png | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/android/source/src/main/play/listings/en-US/graphics/icon.png b/android/source/src/main/play/listings/en-US/graphics/icon.png deleted file mode 120000 index f3e316efb456..000000000000 --- a/android/source/src/main/play/listings/en-US/graphics/icon.png +++ /dev/null @@ -1 +0,0 @@ -../../../../../../ic_launcher-web.png
\ No newline at end of file diff --git a/android/source/src/main/play/listings/en-US/graphics/icon/icon.png b/android/source/src/main/play/listings/en-US/graphics/icon/icon.png new file mode 120000 index 000000000000..f78b23fa9ae5 --- /dev/null +++ b/android/source/src/main/play/listings/en-US/graphics/icon/icon.png @@ -0,0 +1 @@ +../../../../../../../ic_launcher-web.png
\ No newline at end of file |