diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-12-18 09:41:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-18 09:41:23 +0100 |
commit | df78e8078edddc01988d095fb9fe79a480d222df (patch) | |
tree | 79937e3bd12f1f5fd63addb55fb0f1b8c1e84e7b /platform/android/export/export.cpp | |
parent | 830232f1307a302e53e59874dbba958c3100bac1 (diff) | |
parent | b385a4b053e51a7076d87c80eb53ca451d0bdfb6 (diff) |
Merge pull request #24145 from volzhs/android-version-gradle
Fix error/warning while building with android studio
Diffstat (limited to 'platform/android/export/export.cpp')
-rw-r--r-- | platform/android/export/export.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index 7eda32b754..7f8d50b8ab 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -1564,7 +1564,7 @@ public: _fix_resources(p_preset, data); } - if (file == "res/drawable/icon.png") { + if (file == "res/drawable-nodpi-v4/icon.png") { bool found = false; for (unsigned int i = 0; i < sizeof(launcher_icons) / sizeof(launcher_icons[0]); ++i) { String icon_path = String(p_preset->get(launcher_icons[i].option_id)).strip_edges(); |