allow displaying localized icons

Move the logic of calculating the correct iconUrl from sql to java.

Fixes #1460.
This commit is contained in:
Marcus Hoffmann
2020-02-21 14:45:46 +01:00
parent a1701ca8c0
commit a500660a41
12 changed files with 51 additions and 66 deletions

View File

@@ -68,7 +68,7 @@ public class AppIconsTest extends MultiIndexUpdaterTest {
App app = AppProvider.Helper.findHighestPriorityMetadata(context.getContentResolver(),
"org.adaway", new String[]{Schema.AppMetadataTable.Cols.ICON_URL});
assertEquals(app.iconUrl, expectedUrl);
assertEquals(app.getIconUrl(context), expectedUrl);
}
}