Bug 434881 - breeze icons don't appear on android
Summary: breeze icons don't appear on android
Status: REPORTED
Alias: None
Product: kirigami gallery
Classification: Applications
Component: general (show other bugs)
Version: unspecified
Platform: Android Android 7.x
: NOR normal
Target Milestone: ---
Assignee: Marco Martin
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2021-03-24 12:41 UTC by Ludovic Jozeau
Modified: 2021-03-24 12:45 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments
content of the generated apk (78.04 KB, image/png)
2021-03-24 12:41 UTC, Ludovic Jozeau
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Ludovic Jozeau 2021-03-24 12:41:53 UTC
Created attachment 137026 [details]
content of the generated apk

SUMMARY

By default, the app didn't show any icons (home, go-next, view-list-icons, ...), when I looked into the genereted apk (and not forgot to `make install` before `create-apk`) I saw that the path to the icons (`assets:qml/org/kde/kirigami.2/icons`) was different from what QIcon::themeSearchPaths() was returning:

```
03-23 21:45:40.977 30330 30349 D libkirigami2gallery_arm64-v8a.so: themeSearchPaths.size:  2
03-23 21:45:40.977 30330 30349 D libkirigami2gallery_arm64-v8a.so:    ":/android_rcc_bundle/qml/org/kde/kirigami.2/."
03-23 21:45:40.977 30330 30349 D libkirigami2gallery_arm64-v8a.so:    ":/icons"
```

in fact there were no icons nor index.theme in android_rcc_bundle they were placed next to it (see the screenshot)

A workaround that worked for me was to add the correct path to the themeSearchPaths:
```cpp
#ifdef Q_OS_ANDROID
  QIcon::setThemeSearchPaths(QIcon::themeSearchPaths() <<
    QStringLiteral("assets:/qml/org/kde/kirigami.2"));
#endif
```
Comment 1 Ludovic Jozeau 2021-03-24 12:43:31 UTC
SOFTWARE/OS VERSIONS
Linux/KDE Plasma: 
(available in About System)
KDE Plasma Version: 5.21.3
KDE Frameworks Version: 5.80
Qt Version: 5.15.2