summaryrefslogtreecommitdiff
path: root/platform/android/export/export.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2018-12-18 09:41:23 +0100
committerGitHub <noreply@github.com>2018-12-18 09:41:23 +0100
commitdf78e8078edddc01988d095fb9fe79a480d222df (patch)
tree79937e3bd12f1f5fd63addb55fb0f1b8c1e84e7b /platform/android/export/export.cpp
parent830232f1307a302e53e59874dbba958c3100bac1 (diff)
parentb385a4b053e51a7076d87c80eb53ca451d0bdfb6 (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.cpp2
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();