We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6681f25 commit e064efcCopy full SHA for e064efc
platform/android/export/export_plugin.cpp
@@ -294,7 +294,9 @@ void EditorExportPlatformAndroid::_check_for_changes_poll_thread(void *ud) {
294
295
// Check for devices updates
296
String adb = get_adb_path();
297
- if (ea->has_runnable_preset.is_set() && FileAccess::exists(adb)) {
+ // adb.exe was locking the editor_doc_cache file on startup. Adding a check for is_editor_ready provides just enough time
298
+ // to regenerate the doc cache.
299
+ if (ea->has_runnable_preset.is_set() && FileAccess::exists(adb) && EditorNode::get_singleton()->is_editor_ready()) {
300
String devices;
301
List<String> args;
302
args.push_back("devices");
0 commit comments