Automatically generate the Android debug keystore
Automatically generate the Android debug keystore when the Java SDK path is specified.
This commit is contained in:
parent
029aadef56
commit
a8c9b59f3f
6 changed files with 105 additions and 7 deletions
|
|
@ -32,6 +32,7 @@
|
|||
|
||||
#include "core/config/project_settings.h"
|
||||
#include "core/io/config_file.h"
|
||||
#include "editor/editor_settings.h"
|
||||
|
||||
EditorExport *EditorExport::singleton = nullptr;
|
||||
|
||||
|
|
@ -191,6 +192,12 @@ void EditorExport::_notification(int p_what) {
|
|||
export_platforms.write[i]->cleanup();
|
||||
}
|
||||
} break;
|
||||
|
||||
case EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED: {
|
||||
for (int i = 0; i < export_platforms.size(); i++) {
|
||||
export_platforms.write[i]->notification(p_what);
|
||||
}
|
||||
} break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue