Sebastian
Sebastian
@thioshp Which version of FAST are you using and do you still encounter the problem?
I can implement this myself; the purpose of this issue is to get it acknowledged by @ligi (or someone else close to the project) and to find a way how...
Querying the full list from the Package Manager and then seeking the right one would be an option but that still seems a bit inefficient to me.
Okay I got it working. But the list gets refreshed in SearchActivity.onCreate() anyway and moving the refreshing part to onResume() would also remove the need of the receiver. However, if...
How far should efficiency go? Any arguments against directly modifying SearchActivity.appInfoList when refreshing?
Okay I've been using this now for a couple of days (without direct modification of SearchActivity.appInfoList though) and it is very stable. I only had about one time when it...
I won't be able to clean up and polish it until the end of next week but I think it might still be neccesary to test this on some other...
Concerning direct modification of SearchActivity.appInfoList: My basic thought was to save work by avoiding to merge two lists via DynamicAppInfoList.update() but my implementation feels kind of dirty and I think...
The JobScheduler is not useful for subscribing to app list updates. What I figured out to be working instead might be updating the app list in SearchActivity.onCreate() and then registering...
After some tests I've found out that it takes at least just as long to query a full activity list from LauncherApps service than to query from the Package Manager....