forked from organicmaps/organicmaps
[android] Do not search ttf files (fonts) inside apk.
This commit is contained in:
parent
3f7cb039a3
commit
3f35306ff1
1 changed files with 7 additions and 1 deletions
|
@ -60,7 +60,13 @@ void Platform::GetFontNames(FilesList & res) const
|
|||
{
|
||||
GetSystemFontNames(res);
|
||||
|
||||
string const paths[] = { WritableDir(), ResourcesDir() };
|
||||
// Do not search inside apk for the fonts in Android.
|
||||
string const paths[] = {
|
||||
WritableDir()
|
||||
#ifndef OMIM_OS_ANDROID
|
||||
, ResourcesDir()
|
||||
#endif
|
||||
};
|
||||
|
||||
FilesList fonts;
|
||||
for (size_t i = 0; i < ARRAY_SIZE(paths); ++i)
|
||||
|
|
Loading…
Add table
Reference in a new issue