Merge pull request #22350 from volzhs/ignore-invalid-device

Ignore invalid device for Android
This commit is contained in:
Max Hilbrunner 2018-09-22 18:57:11 +02:00 committed by GitHub
commit 2613e59f59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -344,6 +344,7 @@ class EditorExportAndroid : public EditorExportPlatform {
}
d.name = vendor + " " + device;
if (device == String()) continue;
}
ndevices.push_back(d);