1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

Automatically generate the Android debug keystore

Automatically generate the Android debug keystore when the Java SDK path is specified.
This commit is contained in:
Fredia Huya-Kouadio
2024-04-12 23:53:28 -07:00
parent 029aadef56
commit a8c9b59f3f
6 changed files with 105 additions and 7 deletions

View File

@@ -70,6 +70,10 @@ String EditorPaths::get_export_templates_dir() const {
return get_data_dir().path_join(export_templates_folder);
}
String EditorPaths::get_debug_keystore_path() const {
return get_data_dir().path_join("keystores/debug.keystore");
}
String EditorPaths::get_project_settings_dir() const {
return get_project_data_dir().path_join("editor");
}