2016-06-18 14:46:12 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* export.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2016-06-18 14:46:12 +02:00
|
|
|
/*************************************************************************/
|
2021-01-01 20:13:46 +01:00
|
|
|
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
|
2016-06-18 14:46:12 +02:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "export.h"
|
2015-05-02 03:45:32 +02:00
|
|
|
|
2021-07-13 22:30:53 +02:00
|
|
|
#include "export_plugin.h"
|
2017-03-24 00:14:12 +01:00
|
|
|
|
|
|
|
void register_android_exporter() {
|
|
|
|
String exe_ext;
|
|
|
|
if (OS::get_singleton()->get_name() == "Windows") {
|
|
|
|
exe_ext = "*.exe";
|
|
|
|
}
|
|
|
|
|
2020-12-24 07:16:56 +01:00
|
|
|
EDITOR_DEF("export/android/android_sdk_path", "");
|
|
|
|
EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::STRING, "export/android/android_sdk_path", PROPERTY_HINT_GLOBAL_DIR));
|
2017-03-24 00:14:12 +01:00
|
|
|
EDITOR_DEF("export/android/debug_keystore", "");
|
2020-11-14 00:29:23 +01:00
|
|
|
EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::STRING, "export/android/debug_keystore", PROPERTY_HINT_GLOBAL_FILE, "*.keystore,*.jks"));
|
2017-03-24 00:14:12 +01:00
|
|
|
EDITOR_DEF("export/android/debug_keystore_user", "androiddebugkey");
|
|
|
|
EDITOR_DEF("export/android/debug_keystore_pass", "android");
|
2017-07-27 17:20:19 +02:00
|
|
|
EDITOR_DEF("export/android/force_system_user", false);
|
2017-03-24 00:14:12 +01:00
|
|
|
|
|
|
|
EDITOR_DEF("export/android/shutdown_adb_on_exit", true);
|
|
|
|
|
2021-06-20 12:02:11 +02:00
|
|
|
EDITOR_DEF("export/android/one_click_deploy_clear_previous_install", false);
|
|
|
|
|
2019-02-12 15:43:54 +01:00
|
|
|
Ref<EditorExportPlatformAndroid> exporter = Ref<EditorExportPlatformAndroid>(memnew(EditorExportPlatformAndroid));
|
2017-03-24 00:14:12 +01:00
|
|
|
EditorExport::get_singleton()->add_export_platform(exporter);
|
2017-02-20 03:19:30 +01:00
|
|
|
}
|