You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You will be able to use this feature in the next update. This is how you would do it, by adding a new configuration to applications/CandyBar.java file.
@NonNull@OverridepublicConfigurationonInit() {
Configurationconfiguration = newConfiguration();
// ... other configurationsconfiguration.setFilterRequestHandler((request) -> {
// Return true to include the request// Return false to exclude the requestStringpkg = request.getPackageName();
if (pkg == null) returntrue;
return !(pkg.startsWith("org.chromium.webapk") || pkg.startsWith("com.sec.android.app.sbrowser.webapk"));
});
returnconfiguration;
}
I've noticed that a lot of the requested apps are webapk's (looks like a progressive web app I think?)
These IDs are unique and bloat the requests, maybe there's a way to filter them out?
some examples:
The text was updated successfully, but these errors were encountered: