From a3753eda625b49ae4df99b152012b192ccf18efa Mon Sep 17 00:00:00 2001 From: volzhs Date: Sun, 23 Sep 2018 01:41:24 +0900 Subject: [PATCH] Ignore invalid device for Android (cherry picked from commit 3a2d7076979521c5e1f8ec678da28b6eb71ca7e3) --- platform/android/export/export.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index e1ad86e772a..457c07b0f1c 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -345,8 +345,7 @@ class EditorExportAndroid : public EditorExportPlatform { } d.name = vendor + " " + device; - //print_line("name: "+d.name); - //print_line("description: "+d.description); + if (device == String()) continue; } ndevices.push_back(d);