Update the GodotHost interface to support signing and verifying Android apks
Update the export logic to enable apk generation and signing for Android editor builds Note: Only legacy builds are supported. Gradle builds are not supported at this point in time.
This commit is contained in:
parent
794ea99240
commit
a5897d579b
26 changed files with 241 additions and 76 deletions
|
|
@ -71,7 +71,11 @@ String EditorPaths::get_export_templates_dir() const {
|
|||
}
|
||||
|
||||
String EditorPaths::get_debug_keystore_path() const {
|
||||
#ifdef ANDROID_ENABLED
|
||||
return "assets://keystores/debug.keystore";
|
||||
#else
|
||||
return get_data_dir().path_join("keystores/debug.keystore");
|
||||
#endif
|
||||
}
|
||||
|
||||
String EditorPaths::get_project_settings_dir() const {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue