2
0

export.cpp 50 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736
  1. /*************************************************************************/
  2. /* export.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #include "export.h"
  31. #include "editor/editor_export.h"
  32. #include "editor/editor_node.h"
  33. #include "editor/editor_settings.h"
  34. #include "io/marshalls.h"
  35. #include "io/zip_io.h"
  36. #include "os/file_access.h"
  37. #include "os/os.h"
  38. #include "platform/android/logo.gen.h"
  39. #include "platform/android/run_icon.gen.h"
  40. #include "project_settings.h"
  41. #include "version.h"
  42. #include <string.h>
  43. static const char *android_perms[] = {
  44. "ACCESS_CHECKIN_PROPERTIES",
  45. "ACCESS_COARSE_LOCATION",
  46. "ACCESS_FINE_LOCATION",
  47. "ACCESS_LOCATION_EXTRA_COMMANDS",
  48. "ACCESS_MOCK_LOCATION",
  49. "ACCESS_NETWORK_STATE",
  50. "ACCESS_SURFACE_FLINGER",
  51. "ACCESS_WIFI_STATE",
  52. "ACCOUNT_MANAGER",
  53. "ADD_VOICEMAIL",
  54. "AUTHENTICATE_ACCOUNTS",
  55. "BATTERY_STATS",
  56. "BIND_ACCESSIBILITY_SERVICE",
  57. "BIND_APPWIDGET",
  58. "BIND_DEVICE_ADMIN",
  59. "BIND_INPUT_METHOD",
  60. "BIND_NFC_SERVICE",
  61. "BIND_NOTIFICATION_LISTENER_SERVICE",
  62. "BIND_PRINT_SERVICE",
  63. "BIND_REMOTEVIEWS",
  64. "BIND_TEXT_SERVICE",
  65. "BIND_VPN_SERVICE",
  66. "BIND_WALLPAPER",
  67. "BLUETOOTH",
  68. "BLUETOOTH_ADMIN",
  69. "BLUETOOTH_PRIVILEGED",
  70. "BRICK",
  71. "BROADCAST_PACKAGE_REMOVED",
  72. "BROADCAST_SMS",
  73. "BROADCAST_STICKY",
  74. "BROADCAST_WAP_PUSH",
  75. "CALL_PHONE",
  76. "CALL_PRIVILEGED",
  77. "CAMERA",
  78. "CAPTURE_AUDIO_OUTPUT",
  79. "CAPTURE_SECURE_VIDEO_OUTPUT",
  80. "CAPTURE_VIDEO_OUTPUT",
  81. "CHANGE_COMPONENT_ENABLED_STATE",
  82. "CHANGE_CONFIGURATION",
  83. "CHANGE_NETWORK_STATE",
  84. "CHANGE_WIFI_MULTICAST_STATE",
  85. "CHANGE_WIFI_STATE",
  86. "CLEAR_APP_CACHE",
  87. "CLEAR_APP_USER_DATA",
  88. "CONTROL_LOCATION_UPDATES",
  89. "DELETE_CACHE_FILES",
  90. "DELETE_PACKAGES",
  91. "DEVICE_POWER",
  92. "DIAGNOSTIC",
  93. "DISABLE_KEYGUARD",
  94. "DUMP",
  95. "EXPAND_STATUS_BAR",
  96. "FACTORY_TEST",
  97. "FLASHLIGHT",
  98. "FORCE_BACK",
  99. "GET_ACCOUNTS",
  100. "GET_PACKAGE_SIZE",
  101. "GET_TASKS",
  102. "GET_TOP_ACTIVITY_INFO",
  103. "GLOBAL_SEARCH",
  104. "HARDWARE_TEST",
  105. "INJECT_EVENTS",
  106. "INSTALL_LOCATION_PROVIDER",
  107. "INSTALL_PACKAGES",
  108. "INSTALL_SHORTCUT",
  109. "INTERNAL_SYSTEM_WINDOW",
  110. "INTERNET",
  111. "KILL_BACKGROUND_PROCESSES",
  112. "LOCATION_HARDWARE",
  113. "MANAGE_ACCOUNTS",
  114. "MANAGE_APP_TOKENS",
  115. "MANAGE_DOCUMENTS",
  116. "MASTER_CLEAR",
  117. "MEDIA_CONTENT_CONTROL",
  118. "MODIFY_AUDIO_SETTINGS",
  119. "MODIFY_PHONE_STATE",
  120. "MOUNT_FORMAT_FILESYSTEMS",
  121. "MOUNT_UNMOUNT_FILESYSTEMS",
  122. "NFC",
  123. "PERSISTENT_ACTIVITY",
  124. "PROCESS_OUTGOING_CALLS",
  125. "READ_CALENDAR",
  126. "READ_CALL_LOG",
  127. "READ_CONTACTS",
  128. "READ_EXTERNAL_STORAGE",
  129. "READ_FRAME_BUFFER",
  130. "READ_HISTORY_BOOKMARKS",
  131. "READ_INPUT_STATE",
  132. "READ_LOGS",
  133. "READ_PHONE_STATE",
  134. "READ_PROFILE",
  135. "READ_SMS",
  136. "READ_SOCIAL_STREAM",
  137. "READ_SYNC_SETTINGS",
  138. "READ_SYNC_STATS",
  139. "READ_USER_DICTIONARY",
  140. "REBOOT",
  141. "RECEIVE_BOOT_COMPLETED",
  142. "RECEIVE_MMS",
  143. "RECEIVE_SMS",
  144. "RECEIVE_WAP_PUSH",
  145. "RECORD_AUDIO",
  146. "REORDER_TASKS",
  147. "RESTART_PACKAGES",
  148. "SEND_RESPOND_VIA_MESSAGE",
  149. "SEND_SMS",
  150. "SET_ACTIVITY_WATCHER",
  151. "SET_ALARM",
  152. "SET_ALWAYS_FINISH",
  153. "SET_ANIMATION_SCALE",
  154. "SET_DEBUG_APP",
  155. "SET_ORIENTATION",
  156. "SET_POINTER_SPEED",
  157. "SET_PREFERRED_APPLICATIONS",
  158. "SET_PROCESS_LIMIT",
  159. "SET_TIME",
  160. "SET_TIME_ZONE",
  161. "SET_WALLPAPER",
  162. "SET_WALLPAPER_HINTS",
  163. "SIGNAL_PERSISTENT_PROCESSES",
  164. "STATUS_BAR",
  165. "SUBSCRIBED_FEEDS_READ",
  166. "SUBSCRIBED_FEEDS_WRITE",
  167. "SYSTEM_ALERT_WINDOW",
  168. "TRANSMIT_IR",
  169. "UNINSTALL_SHORTCUT",
  170. "UPDATE_DEVICE_STATS",
  171. "USE_CREDENTIALS",
  172. "USE_SIP",
  173. "VIBRATE",
  174. "WAKE_LOCK",
  175. "WRITE_APN_SETTINGS",
  176. "WRITE_CALENDAR",
  177. "WRITE_CALL_LOG",
  178. "WRITE_CONTACTS",
  179. "WRITE_EXTERNAL_STORAGE",
  180. "WRITE_GSERVICES",
  181. "WRITE_HISTORY_BOOKMARKS",
  182. "WRITE_PROFILE",
  183. "WRITE_SECURE_SETTINGS",
  184. "WRITE_SETTINGS",
  185. "WRITE_SMS",
  186. "WRITE_SOCIAL_STREAM",
  187. "WRITE_SYNC_SETTINGS",
  188. "WRITE_USER_DICTIONARY",
  189. NULL
  190. };
  191. class EditorExportAndroid : public EditorExportPlatform {
  192. GDCLASS(EditorExportAndroid, EditorExportPlatform)
  193. Ref<ImageTexture> logo;
  194. Ref<ImageTexture> run_icon;
  195. struct Device {
  196. String id;
  197. String name;
  198. String description;
  199. int api_level;
  200. };
  201. struct APKExportData {
  202. zipFile apk;
  203. EditorProgress *ep;
  204. };
  205. Vector<Device> devices;
  206. bool devices_changed;
  207. Mutex *device_lock;
  208. Thread *device_thread;
  209. volatile bool quit_request;
  210. static void _device_poll_thread(void *ud) {
  211. EditorExportAndroid *ea = (EditorExportAndroid *)ud;
  212. while (!ea->quit_request) {
  213. String adb = EditorSettings::get_singleton()->get("export/android/adb");
  214. if (FileAccess::exists(adb)) {
  215. String devices;
  216. List<String> args;
  217. args.push_back("devices");
  218. int ec;
  219. OS::get_singleton()->execute(adb, args, true, NULL, &devices, &ec);
  220. Vector<String> ds = devices.split("\n");
  221. Vector<String> ldevices;
  222. for (int i = 1; i < ds.size(); i++) {
  223. String d = ds[i];
  224. int dpos = d.find("device");
  225. if (dpos == -1)
  226. continue;
  227. d = d.substr(0, dpos).strip_edges();
  228. //print_line("found devuce: "+d);
  229. ldevices.push_back(d);
  230. }
  231. ea->device_lock->lock();
  232. bool different = false;
  233. if (ea->devices.size() != ldevices.size()) {
  234. different = true;
  235. } else {
  236. for (int i = 0; i < ea->devices.size(); i++) {
  237. if (ea->devices[i].id != ldevices[i]) {
  238. different = true;
  239. break;
  240. }
  241. }
  242. }
  243. if (different) {
  244. Vector<Device> ndevices;
  245. for (int i = 0; i < ldevices.size(); i++) {
  246. Device d;
  247. d.id = ldevices[i];
  248. for (int j = 0; j < ea->devices.size(); j++) {
  249. if (ea->devices[j].id == ldevices[i]) {
  250. d.description = ea->devices[j].description;
  251. d.name = ea->devices[j].name;
  252. d.api_level = ea->devices[j].api_level;
  253. }
  254. }
  255. if (d.description == "") {
  256. //in the oven, request!
  257. args.clear();
  258. args.push_back("-s");
  259. args.push_back(d.id);
  260. args.push_back("shell");
  261. args.push_back("cat");
  262. args.push_back("/system/build.prop");
  263. int ec;
  264. String dp;
  265. OS::get_singleton()->execute(adb, args, true, NULL, &dp, &ec);
  266. Vector<String> props = dp.split("\n");
  267. String vendor;
  268. String device;
  269. d.description + "Device ID: " + d.id + "\n";
  270. d.api_level = 0;
  271. for (int j = 0; j < props.size(); j++) {
  272. String p = props[j];
  273. if (p.begins_with("ro.product.model=")) {
  274. device = p.get_slice("=", 1).strip_edges();
  275. } else if (p.begins_with("ro.product.brand=")) {
  276. vendor = p.get_slice("=", 1).strip_edges().capitalize();
  277. } else if (p.begins_with("ro.build.display.id=")) {
  278. d.description += "Build: " + p.get_slice("=", 1).strip_edges() + "\n";
  279. } else if (p.begins_with("ro.build.version.release=")) {
  280. d.description += "Release: " + p.get_slice("=", 1).strip_edges() + "\n";
  281. } else if (p.begins_with("ro.build.version.sdk=")) {
  282. d.api_level = p.get_slice("=", 1).to_int();
  283. } else if (p.begins_with("ro.product.cpu.abi=")) {
  284. d.description += "CPU: " + p.get_slice("=", 1).strip_edges() + "\n";
  285. } else if (p.begins_with("ro.product.manufacturer=")) {
  286. d.description += "Manufacturer: " + p.get_slice("=", 1).strip_edges() + "\n";
  287. } else if (p.begins_with("ro.board.platform=")) {
  288. d.description += "Chipset: " + p.get_slice("=", 1).strip_edges() + "\n";
  289. } else if (p.begins_with("ro.opengles.version=")) {
  290. uint32_t opengl = p.get_slice("=", 1).to_int();
  291. d.description += "OpenGL: " + itos(opengl >> 16) + "." + itos((opengl >> 8) & 0xFF) + "." + itos((opengl)&0xFF) + "\n";
  292. }
  293. }
  294. d.name = vendor + " " + device;
  295. //print_line("name: "+d.name);
  296. //print_line("description: "+d.description);
  297. }
  298. ndevices.push_back(d);
  299. }
  300. ea->devices = ndevices;
  301. ea->devices_changed = true;
  302. }
  303. ea->device_lock->unlock();
  304. }
  305. uint64_t wait = 3000000;
  306. uint64_t time = OS::get_singleton()->get_ticks_usec();
  307. while (OS::get_singleton()->get_ticks_usec() - time < wait) {
  308. OS::get_singleton()->delay_usec(1000);
  309. if (ea->quit_request)
  310. break;
  311. }
  312. }
  313. if (EditorSettings::get_singleton()->get("export/android/shutdown_adb_on_exit")) {
  314. String adb = EditorSettings::get_singleton()->get("export/android/adb");
  315. if (!FileAccess::exists(adb)) {
  316. return; //adb not configured
  317. }
  318. List<String> args;
  319. args.push_back("kill-server");
  320. OS::get_singleton()->execute(adb, args, true);
  321. };
  322. }
  323. String get_project_name(const String &p_name) const {
  324. String aname;
  325. if (p_name != "") {
  326. aname = p_name;
  327. } else {
  328. aname = ProjectSettings::get_singleton()->get("application/config/name");
  329. }
  330. if (aname == "") {
  331. aname = VERSION_NAME;
  332. }
  333. return aname;
  334. }
  335. String get_package_name(const String &p_package) {
  336. String pname = p_package;
  337. String basename = ProjectSettings::get_singleton()->get("application/config/name");
  338. basename = basename.to_lower();
  339. String name;
  340. bool first = true;
  341. for (int i = 0; i < basename.length(); i++) {
  342. CharType c = basename[i];
  343. if (c >= '0' && c <= '9' && first) {
  344. continue;
  345. }
  346. if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9')) {
  347. name += String::chr(c);
  348. first = false;
  349. }
  350. }
  351. if (name == "")
  352. name = "noname";
  353. pname = pname.replace("$genname", name);
  354. return pname;
  355. }
  356. static bool _should_compress_asset(const String &p_path, const Vector<uint8_t> &p_data) {
  357. /*
  358. * By not compressing files with little or not benefit in doing so,
  359. * a performance gain is expected attime. Moreover, if the APK is
  360. * zip-aligned, assets stored as they are can be efficiently read by
  361. * Android by memory-mapping them.
  362. */
  363. // -- Unconditional uncompress to mimic AAPT plus some other
  364. static const char *unconditional_compress_ext[] = {
  365. // From https://github.com/android/platform_frameworks_base/blob/master/tools/aapt/Package.cpp
  366. // These formats are already compressed, or don't compress well:
  367. ".jpg", ".jpeg", ".png", ".gif",
  368. ".wav", ".mp2", ".mp3", ".ogg", ".aac",
  369. ".mpg", ".mpeg", ".mid", ".midi", ".smf", ".jet",
  370. ".rtttl", ".imy", ".xmf", ".mp4", ".m4a",
  371. ".m4v", ".3gp", ".3gpp", ".3g2", ".3gpp2",
  372. ".amr", ".awb", ".wma", ".wmv",
  373. // Godot-specific:
  374. ".webp", // Same reasoning as .png
  375. ".cfb", // Don't let small config files slow-down startup
  376. ".scn", // Binary scenes are usually already compressed
  377. ".stex", // Streamable textures are usually already compressed
  378. // Trailer for easier processing
  379. NULL
  380. };
  381. for (const char **ext = unconditional_compress_ext; *ext; ++ext) {
  382. if (p_path.to_lower().ends_with(String(*ext))) {
  383. return false;
  384. }
  385. }
  386. // -- Compressed resource?
  387. if (p_data.size() >= 4 && p_data[0] == 'R' && p_data[1] == 'S' && p_data[2] == 'C' && p_data[3] == 'C') {
  388. // Already compressed
  389. return false;
  390. }
  391. // --- TODO: Decide on texture resources according to their image compression setting
  392. return true;
  393. }
  394. static zip_fileinfo get_zip_fileinfo() {
  395. OS::Time time = OS::get_singleton()->get_time();
  396. OS::Date date = OS::get_singleton()->get_date();
  397. zip_fileinfo zipfi;
  398. zipfi.tmz_date.tm_hour = time.hour;
  399. zipfi.tmz_date.tm_mday = date.day;
  400. zipfi.tmz_date.tm_min = time.min;
  401. zipfi.tmz_date.tm_mon = date.month;
  402. zipfi.tmz_date.tm_sec = time.sec;
  403. zipfi.tmz_date.tm_year = date.year;
  404. zipfi.dosDate = 0;
  405. zipfi.external_fa = 0;
  406. zipfi.internal_fa = 0;
  407. return zipfi;
  408. }
  409. static Set<String> get_abis() {
  410. Set<String> abis;
  411. abis.insert("armeabi");
  412. abis.insert("armeabi-v7a");
  413. abis.insert("arm64-v8a");
  414. abis.insert("x86");
  415. abis.insert("x86_64");
  416. abis.insert("mips");
  417. abis.insert("mips64");
  418. return abis;
  419. }
  420. static Error save_apk_file(void *p_userdata, const String &p_path, const Vector<uint8_t> &p_data, int p_file, int p_total) {
  421. APKExportData *ed = (APKExportData *)p_userdata;
  422. String dst_path = p_path;
  423. static Set<String> android_abis = get_abis();
  424. if (dst_path.ends_with(".so")) {
  425. String abi = dst_path.get_base_dir().get_file().strip_edges(); // parent dir name
  426. if (android_abis.has(abi)) {
  427. dst_path = "lib/" + abi + "/" + dst_path.get_file();
  428. } else {
  429. String err = "Dynamic libraries must be located in the folder named after Android ABI they were compiled for. " +
  430. p_path + " does not follow this convention.";
  431. ERR_PRINT(err.utf8().get_data());
  432. return ERR_FILE_BAD_PATH;
  433. }
  434. } else {
  435. dst_path = dst_path.replace_first("res://", "assets/");
  436. }
  437. zip_fileinfo zipfi = get_zip_fileinfo();
  438. zipOpenNewFileInZip(ed->apk,
  439. dst_path.utf8().get_data(),
  440. &zipfi,
  441. NULL,
  442. 0,
  443. NULL,
  444. 0,
  445. NULL,
  446. _should_compress_asset(p_path, p_data) ? Z_DEFLATED : 0,
  447. Z_DEFAULT_COMPRESSION);
  448. zipWriteInFileInZip(ed->apk, p_data.ptr(), p_data.size());
  449. zipCloseFileInZip(ed->apk);
  450. ed->ep->step("File: " + p_path, 3 + p_file * 100 / p_total);
  451. return OK;
  452. }
  453. void _fix_manifest(const Ref<EditorExportPreset> &p_preset, Vector<uint8_t> &p_manifest, bool p_give_internet) {
  454. // Leaving the unused types commented because looking these constants up
  455. // again later would be annoying
  456. // const int CHUNK_AXML_FILE = 0x00080003;
  457. // const int CHUNK_RESOURCEIDS = 0x00080180;
  458. const int CHUNK_STRINGS = 0x001C0001;
  459. // const int CHUNK_XML_END_NAMESPACE = 0x00100101;
  460. // const int CHUNK_XML_END_TAG = 0x00100103;
  461. // const int CHUNK_XML_START_NAMESPACE = 0x00100100;
  462. const int CHUNK_XML_START_TAG = 0x00100102;
  463. // const int CHUNK_XML_TEXT = 0x00100104;
  464. const int UTF8_FLAG = 0x00000100;
  465. Vector<String> string_table;
  466. uint32_t ofs = 8;
  467. uint32_t string_count = 0;
  468. uint32_t styles_count = 0;
  469. uint32_t string_flags = 0;
  470. uint32_t string_data_offset = 0;
  471. uint32_t styles_offset = 0;
  472. uint32_t string_table_begins = 0;
  473. uint32_t string_table_ends = 0;
  474. Vector<uint8_t> stable_extra;
  475. String version_name = p_preset->get("version/name");
  476. int version_code = p_preset->get("version/code");
  477. String package_name = p_preset->get("package/unique_name");
  478. int orientation = p_preset->get("screen/orientation");
  479. bool screen_support_small = p_preset->get("screen/support_small");
  480. bool screen_support_normal = p_preset->get("screen/support_normal");
  481. bool screen_support_large = p_preset->get("screen/support_large");
  482. bool screen_support_xlarge = p_preset->get("screen/support_xlarge");
  483. String user_perms[MAX_USER_PERMISSIONS];
  484. for (int i = 0; i < MAX_USER_PERMISSIONS; i++) {
  485. user_perms[i] = p_preset->get("user_permissions/" + itos(i));
  486. }
  487. Set<String> perms;
  488. const char **aperms = android_perms;
  489. while (*aperms) {
  490. bool enabled = p_preset->get("permissions/" + String(*aperms).to_lower());
  491. if (enabled)
  492. perms.insert(String(*aperms));
  493. aperms++;
  494. }
  495. while (ofs < (uint32_t)p_manifest.size()) {
  496. uint32_t chunk = decode_uint32(&p_manifest[ofs]);
  497. uint32_t size = decode_uint32(&p_manifest[ofs + 4]);
  498. switch (chunk) {
  499. case CHUNK_STRINGS: {
  500. int iofs = ofs + 8;
  501. string_count = decode_uint32(&p_manifest[iofs]);
  502. styles_count = decode_uint32(&p_manifest[iofs + 4]);
  503. string_flags = decode_uint32(&p_manifest[iofs + 8]);
  504. string_data_offset = decode_uint32(&p_manifest[iofs + 12]);
  505. styles_offset = decode_uint32(&p_manifest[iofs + 16]);
  506. /*
  507. printf("string count: %i\n",string_count);
  508. printf("flags: %i\n",string_flags);
  509. printf("sdata ofs: %i\n",string_data_offset);
  510. printf("styles ofs: %i\n",styles_offset);
  511. */
  512. uint32_t st_offset = iofs + 20;
  513. string_table.resize(string_count);
  514. uint32_t string_end = 0;
  515. string_table_begins = st_offset;
  516. for (uint32_t i = 0; i < string_count; i++) {
  517. uint32_t string_at = decode_uint32(&p_manifest[st_offset + i * 4]);
  518. string_at += st_offset + string_count * 4;
  519. ERR_EXPLAIN("Unimplemented, can't read utf8 string table.");
  520. ERR_FAIL_COND(string_flags & UTF8_FLAG);
  521. if (string_flags & UTF8_FLAG) {
  522. } else {
  523. uint32_t len = decode_uint16(&p_manifest[string_at]);
  524. Vector<CharType> ucstring;
  525. ucstring.resize(len + 1);
  526. for (uint32_t j = 0; j < len; j++) {
  527. uint16_t c = decode_uint16(&p_manifest[string_at + 2 + 2 * j]);
  528. ucstring[j] = c;
  529. }
  530. string_end = MAX(string_at + 2 + 2 * len, string_end);
  531. ucstring[len] = 0;
  532. string_table[i] = ucstring.ptr();
  533. }
  534. //print_line("String "+itos(i)+": "+string_table[i]);
  535. }
  536. for (uint32_t i = string_end; i < (ofs + size); i++) {
  537. stable_extra.push_back(p_manifest[i]);
  538. }
  539. //printf("stable extra: %i\n",int(stable_extra.size()));
  540. string_table_ends = ofs + size;
  541. //print_line("STABLE SIZE: "+itos(size)+" ACTUAL: "+itos(string_table_ends));
  542. } break;
  543. case CHUNK_XML_START_TAG: {
  544. int iofs = ofs + 8;
  545. uint32_t name = decode_uint32(&p_manifest[iofs + 12]);
  546. String tname = string_table[name];
  547. uint32_t attrcount = decode_uint32(&p_manifest[iofs + 20]);
  548. iofs += 28;
  549. for (uint32_t i = 0; i < attrcount; i++) {
  550. uint32_t attr_nspace = decode_uint32(&p_manifest[iofs]);
  551. uint32_t attr_name = decode_uint32(&p_manifest[iofs + 4]);
  552. uint32_t attr_value = decode_uint32(&p_manifest[iofs + 8]);
  553. uint32_t attr_resid = decode_uint32(&p_manifest[iofs + 16]);
  554. String value;
  555. if (attr_value != 0xFFFFFFFF)
  556. value = string_table[attr_value];
  557. else
  558. value = "Res #" + itos(attr_resid);
  559. String attrname = string_table[attr_name];
  560. String nspace;
  561. if (attr_nspace != 0xFFFFFFFF)
  562. nspace = string_table[attr_nspace];
  563. else
  564. nspace = "";
  565. //replace project information
  566. if (tname == "manifest" && attrname == "package") {
  567. print_line("FOUND package");
  568. string_table[attr_value] = get_package_name(package_name);
  569. }
  570. if (tname == "manifest" && /*nspace=="android" &&*/ attrname == "versionCode") {
  571. print_line("FOUND versionCode");
  572. encode_uint32(version_code, &p_manifest[iofs + 16]);
  573. }
  574. if (tname == "manifest" && /*nspace=="android" &&*/ attrname == "versionName") {
  575. print_line("FOUND versionName");
  576. if (attr_value == 0xFFFFFFFF) {
  577. WARN_PRINT("Version name in a resource, should be plaintext")
  578. } else
  579. string_table[attr_value] = version_name;
  580. }
  581. if (tname == "activity" && /*nspace=="android" &&*/ attrname == "screenOrientation") {
  582. encode_uint32(orientation == 0 ? 0 : 1, &p_manifest[iofs + 16]);
  583. }
  584. if (tname == "uses-feature" && /*nspace=="android" &&*/ attrname == "glEsVersion") {
  585. print_line("version number: " + itos(decode_uint32(&p_manifest[iofs + 16])));
  586. }
  587. if (tname == "uses-permission" && /*nspace=="android" &&*/ attrname == "name") {
  588. if (value.begins_with("godot.custom")) {
  589. int which = value.get_slice(".", 2).to_int();
  590. if (which >= 0 && which < MAX_USER_PERMISSIONS && user_perms[which].strip_edges() != "") {
  591. string_table[attr_value] = user_perms[which].strip_edges();
  592. }
  593. } else if (value.begins_with("godot.")) {
  594. String perm = value.get_slice(".", 1);
  595. if (perms.has(perm) || (p_give_internet && perm == "INTERNET")) {
  596. print_line("PERM: " + perm);
  597. string_table[attr_value] = "android.permission." + perm;
  598. }
  599. }
  600. }
  601. if (tname == "supports-screens") {
  602. if (attrname == "smallScreens") {
  603. encode_uint32(screen_support_small ? 0xFFFFFFFF : 0, &p_manifest[iofs + 16]);
  604. } else if (attrname == "normalScreens") {
  605. encode_uint32(screen_support_normal ? 0xFFFFFFFF : 0, &p_manifest[iofs + 16]);
  606. } else if (attrname == "largeScreens") {
  607. encode_uint32(screen_support_large ? 0xFFFFFFFF : 0, &p_manifest[iofs + 16]);
  608. } else if (attrname == "xlargeScreens") {
  609. encode_uint32(screen_support_xlarge ? 0xFFFFFFFF : 0, &p_manifest[iofs + 16]);
  610. }
  611. }
  612. iofs += 20;
  613. }
  614. } break;
  615. }
  616. ofs += size;
  617. }
  618. //create new andriodmanifest binary
  619. Vector<uint8_t> ret;
  620. ret.resize(string_table_begins + string_table.size() * 4);
  621. for (uint32_t i = 0; i < string_table_begins; i++) {
  622. ret[i] = p_manifest[i];
  623. }
  624. ofs = 0;
  625. for (int i = 0; i < string_table.size(); i++) {
  626. encode_uint32(ofs, &ret[string_table_begins + i * 4]);
  627. ofs += string_table[i].length() * 2 + 2 + 2;
  628. //print_line("ofs: "+itos(i)+": "+itos(ofs));
  629. }
  630. ret.resize(ret.size() + ofs);
  631. uint8_t *chars = &ret[ret.size() - ofs];
  632. for (int i = 0; i < string_table.size(); i++) {
  633. String s = string_table[i];
  634. //print_line("savint string :"+s);
  635. encode_uint16(s.length(), chars);
  636. chars += 2;
  637. for (int j = 0; j < s.length(); j++) { //include zero?
  638. encode_uint16(s[j], chars);
  639. chars += 2;
  640. }
  641. encode_uint16(0, chars);
  642. chars += 2;
  643. }
  644. for (int i = 0; i < stable_extra.size(); i++) {
  645. ret.push_back(stable_extra[i]);
  646. }
  647. while (ret.size() % 4)
  648. ret.push_back(0);
  649. uint32_t new_stable_end = ret.size();
  650. uint32_t extra = (p_manifest.size() - string_table_ends);
  651. ret.resize(new_stable_end + extra);
  652. for (uint32_t i = 0; i < extra; i++)
  653. ret[new_stable_end + i] = p_manifest[string_table_ends + i];
  654. while (ret.size() % 4)
  655. ret.push_back(0);
  656. encode_uint32(ret.size(), &ret[4]); //update new file size
  657. encode_uint32(new_stable_end - 8, &ret[12]); //update new string table size
  658. //print_line("file size: "+itos(ret.size()));
  659. p_manifest = ret;
  660. }
  661. static String _parse_string(const uint8_t *p_bytes, bool p_utf8) {
  662. uint32_t offset = 0;
  663. uint32_t len = decode_uint16(&p_bytes[offset]);
  664. if (p_utf8) {
  665. //don't know how to read extended utf8, this will have to be for now
  666. len >>= 8;
  667. }
  668. offset += 2;
  669. //printf("len %i, unicode: %i\n",len,int(p_utf8));
  670. if (p_utf8) {
  671. Vector<uint8_t> str8;
  672. str8.resize(len + 1);
  673. for (uint32_t i = 0; i < len; i++) {
  674. str8[i] = p_bytes[offset + i];
  675. }
  676. str8[len] = 0;
  677. String str;
  678. str.parse_utf8((const char *)str8.ptr());
  679. return str;
  680. } else {
  681. String str;
  682. for (uint32_t i = 0; i < len; i++) {
  683. CharType c = decode_uint16(&p_bytes[offset + i * 2]);
  684. if (c == 0)
  685. break;
  686. str += String::chr(c);
  687. }
  688. return str;
  689. }
  690. }
  691. void _fix_resources(const Ref<EditorExportPreset> &p_preset, Vector<uint8_t> &p_manifest) {
  692. const int UTF8_FLAG = 0x00000100;
  693. print_line("*******************GORRRGLE***********************");
  694. uint32_t string_block_len = decode_uint32(&p_manifest[16]);
  695. uint32_t string_count = decode_uint32(&p_manifest[20]);
  696. uint32_t string_flags = decode_uint32(&p_manifest[28]);
  697. const uint32_t string_table_begins = 40;
  698. Vector<String> string_table;
  699. String package_name = p_preset->get("package/name");
  700. for (uint32_t i = 0; i < string_count; i++) {
  701. uint32_t offset = decode_uint32(&p_manifest[string_table_begins + i * 4]);
  702. offset += string_table_begins + string_count * 4;
  703. String str = _parse_string(&p_manifest[offset], string_flags & UTF8_FLAG);
  704. if (str.begins_with("godot-project-name")) {
  705. if (str == "godot-project-name") {
  706. //project name
  707. str = get_project_name(package_name);
  708. } else {
  709. String lang = str.substr(str.find_last("-") + 1, str.length()).replace("-", "_");
  710. String prop = "application/config/name_" + lang;
  711. if (ProjectSettings::get_singleton()->has_setting(prop)) {
  712. str = ProjectSettings::get_singleton()->get(prop);
  713. } else {
  714. str = get_project_name(package_name);
  715. }
  716. }
  717. }
  718. string_table.push_back(str);
  719. }
  720. //write a new string table, but use 16 bits
  721. Vector<uint8_t> ret;
  722. ret.resize(string_table_begins + string_table.size() * 4);
  723. for (uint32_t i = 0; i < string_table_begins; i++) {
  724. ret[i] = p_manifest[i];
  725. }
  726. int ofs = 0;
  727. for (int i = 0; i < string_table.size(); i++) {
  728. encode_uint32(ofs, &ret[string_table_begins + i * 4]);
  729. ofs += string_table[i].length() * 2 + 2 + 2;
  730. }
  731. ret.resize(ret.size() + ofs);
  732. uint8_t *chars = &ret[ret.size() - ofs];
  733. for (int i = 0; i < string_table.size(); i++) {
  734. String s = string_table[i];
  735. encode_uint16(s.length(), chars);
  736. chars += 2;
  737. for (int j = 0; j < s.length(); j++) {
  738. encode_uint16(s[j], chars);
  739. chars += 2;
  740. }
  741. encode_uint16(0, chars);
  742. chars += 2;
  743. }
  744. //pad
  745. while (ret.size() % 4)
  746. ret.push_back(0);
  747. //change flags to not use utf8
  748. encode_uint32(string_flags & ~0x100, &ret[28]);
  749. //change length
  750. encode_uint32(ret.size() - 12, &ret[16]);
  751. //append the rest...
  752. int rest_from = 12 + string_block_len;
  753. int rest_to = ret.size();
  754. int rest_len = (p_manifest.size() - rest_from);
  755. ret.resize(ret.size() + (p_manifest.size() - rest_from));
  756. for (int i = 0; i < rest_len; i++) {
  757. ret[rest_to + i] = p_manifest[rest_from + i];
  758. }
  759. //finally update the size
  760. encode_uint32(ret.size(), &ret[4]);
  761. p_manifest = ret;
  762. //printf("end\n");
  763. }
  764. public:
  765. enum {
  766. MAX_USER_PERMISSIONS = 20
  767. };
  768. typedef Error (*EditorExportSaveFunction)(void *p_userdata, const String &p_path, const Vector<uint8_t> &p_data, int p_file, int p_total);
  769. public:
  770. virtual void get_preset_features(const Ref<EditorExportPreset> &p_preset, List<String> *r_features) {
  771. // Reenable when a GLES 2.0 backend is readded
  772. /*int api = p_preset->get("graphics/api");
  773. if (api == 0)
  774. r_features->push_back("etc");
  775. else*/
  776. r_features->push_back("etc2");
  777. }
  778. virtual void get_export_options(List<ExportOption> *r_options) {
  779. /*r_options->push_back(ExportOption(PropertyInfo(Variant::INT, "graphics/api", PROPERTY_HINT_ENUM, "OpenGL ES 2.0,OpenGL ES 3.0"), 1));*/
  780. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "graphics/32_bits_framebuffer"), true));
  781. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "one_click_deploy/clear_previous_install"), true));
  782. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "custom_package/debug", PROPERTY_HINT_GLOBAL_FILE, "apk"), ""));
  783. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "custom_package/release", PROPERTY_HINT_GLOBAL_FILE, "apk"), ""));
  784. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "command_line/extra_args"), ""));
  785. r_options->push_back(ExportOption(PropertyInfo(Variant::INT, "version/code", PROPERTY_HINT_RANGE, "1,65535,1"), 1));
  786. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "version/name"), "1.0"));
  787. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "package/unique_name"), "org.godotengine.$genname"));
  788. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "package/name"), ""));
  789. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "package/icon", PROPERTY_HINT_FILE, "png"), ""));
  790. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "package/signed"), true));
  791. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "architecture/arm"), true));
  792. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "architecture/x86"), false));
  793. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "screen/immersive_mode"), true));
  794. r_options->push_back(ExportOption(PropertyInfo(Variant::INT, "screen/orientation", PROPERTY_HINT_ENUM, "Landscape,Portrait"), 0));
  795. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "screen/support_small"), true));
  796. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "screen/support_normal"), true));
  797. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "screen/support_large"), true));
  798. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "screen/support_xlarge"), true));
  799. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "keystore/release", PROPERTY_HINT_GLOBAL_FILE, "keystore"), ""));
  800. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "keystore/release_user"), ""));
  801. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "keystore/release_password"), ""));
  802. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "apk_expansion/enable"), false));
  803. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "apk_expansion/SALT"), ""));
  804. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "apk_expansion/public_key", PROPERTY_HINT_MULTILINE_TEXT), ""));
  805. const char **perms = android_perms;
  806. while (*perms) {
  807. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "permissions/" + String(*perms).to_lower()), false));
  808. perms++;
  809. }
  810. for (int i = 0; i < MAX_USER_PERMISSIONS; i++) {
  811. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "user_permissions/" + itos(i)), false));
  812. }
  813. //r_options->push_back( PropertyInfo( Variant::INT, "resources/pack_mode", PROPERTY_HINT_ENUM,"Copy,Single Exec.,Pack (.pck),Bundles (Optical)"));
  814. }
  815. virtual String get_name() const {
  816. return "Android";
  817. }
  818. virtual String get_os_name() const {
  819. return "Android";
  820. }
  821. virtual Ref<Texture> get_logo() const {
  822. return logo;
  823. }
  824. virtual bool poll_devices() {
  825. bool dc = devices_changed;
  826. devices_changed = false;
  827. return dc;
  828. }
  829. virtual int get_device_count() const {
  830. device_lock->lock();
  831. int dc = devices.size();
  832. device_lock->unlock();
  833. return dc;
  834. }
  835. virtual String get_device_name(int p_device) const {
  836. ERR_FAIL_INDEX_V(p_device, devices.size(), "");
  837. device_lock->lock();
  838. String s = devices[p_device].name;
  839. device_lock->unlock();
  840. return s;
  841. }
  842. virtual String get_device_info(int p_device) const {
  843. ERR_FAIL_INDEX_V(p_device, devices.size(), "");
  844. device_lock->lock();
  845. String s = devices[p_device].description;
  846. device_lock->unlock();
  847. return s;
  848. }
  849. virtual Error run(const Ref<EditorExportPreset> &p_preset, int p_device, int p_debug_flags) {
  850. ERR_FAIL_INDEX_V(p_device, devices.size(), ERR_INVALID_PARAMETER);
  851. device_lock->lock();
  852. EditorProgress ep("run", "Running on " + devices[p_device].name, 3);
  853. String adb = EditorSettings::get_singleton()->get("export/android/adb");
  854. if (adb == "") {
  855. EditorNode::add_io_error("ADB executable not configured in settings, can't run.");
  856. device_lock->unlock();
  857. return ERR_UNCONFIGURED;
  858. }
  859. //export_temp
  860. ep.step("Exporting APK", 0);
  861. const bool use_remote = (p_debug_flags & DEBUG_FLAG_REMOTE_DEBUG) || (p_debug_flags & DEBUG_FLAG_DUMB_CLIENT);
  862. const bool use_reverse = devices[p_device].api_level >= 21;
  863. if (use_reverse)
  864. p_debug_flags |= DEBUG_FLAG_REMOTE_DEBUG_LOCALHOST;
  865. String export_to = EditorSettings::get_singleton()->get_cache_dir().plus_file("tmpexport.apk");
  866. Error err = export_project(p_preset, true, export_to, p_debug_flags);
  867. if (err) {
  868. device_lock->unlock();
  869. return err;
  870. }
  871. List<String> args;
  872. int rv;
  873. bool remove_prev = p_preset->get("one_click_deploy/clear_previous_install");
  874. String version_name = p_preset->get("version/name");
  875. String package_name = p_preset->get("package/unique_name");
  876. if (remove_prev) {
  877. ep.step("Uninstalling..", 1);
  878. print_line("Uninstalling previous version: " + devices[p_device].name);
  879. args.push_back("-s");
  880. args.push_back(devices[p_device].id);
  881. args.push_back("uninstall");
  882. args.push_back(get_package_name(package_name));
  883. err = OS::get_singleton()->execute(adb, args, true, NULL, NULL, &rv);
  884. }
  885. print_line("Installing into device (please wait..): " + devices[p_device].name);
  886. ep.step("Installing to Device (please wait..)..", 2);
  887. args.clear();
  888. args.push_back("-s");
  889. args.push_back(devices[p_device].id);
  890. args.push_back("install");
  891. args.push_back("-r");
  892. args.push_back(export_to);
  893. err = OS::get_singleton()->execute(adb, args, true, NULL, NULL, &rv);
  894. if (err || rv != 0) {
  895. EditorNode::add_io_error("Could not install to device.");
  896. device_lock->unlock();
  897. return ERR_CANT_CREATE;
  898. }
  899. if (use_remote) {
  900. if (use_reverse) {
  901. static const char *const msg = "** Device API >= 21; debugging over USB **";
  902. EditorNode::get_singleton()->get_log()->add_message(msg);
  903. print_line(String(msg).to_upper());
  904. args.clear();
  905. args.push_back("-s");
  906. args.push_back(devices[p_device].id);
  907. args.push_back("reverse");
  908. args.push_back("--remove-all");
  909. OS::get_singleton()->execute(adb, args, true, NULL, NULL, &rv);
  910. if (p_debug_flags & DEBUG_FLAG_REMOTE_DEBUG) {
  911. int dbg_port = EditorSettings::get_singleton()->get("network/debug/remote_port");
  912. args.clear();
  913. args.push_back("-s");
  914. args.push_back(devices[p_device].id);
  915. args.push_back("reverse");
  916. args.push_back("tcp:" + itos(dbg_port));
  917. args.push_back("tcp:" + itos(dbg_port));
  918. OS::get_singleton()->execute(adb, args, true, NULL, NULL, &rv);
  919. print_line("Reverse result: " + itos(rv));
  920. }
  921. if (p_debug_flags & DEBUG_FLAG_DUMB_CLIENT) {
  922. int fs_port = EditorSettings::get_singleton()->get("filesystem/file_server/port");
  923. args.clear();
  924. args.push_back("-s");
  925. args.push_back(devices[p_device].id);
  926. args.push_back("reverse");
  927. args.push_back("tcp:" + itos(fs_port));
  928. args.push_back("tcp:" + itos(fs_port));
  929. err = OS::get_singleton()->execute(adb, args, true, NULL, NULL, &rv);
  930. print_line("Reverse result2: " + itos(rv));
  931. }
  932. } else {
  933. static const char *const msg = "** Device API < 21; debugging over Wi-Fi **";
  934. EditorNode::get_singleton()->get_log()->add_message(msg);
  935. print_line(String(msg).to_upper());
  936. }
  937. }
  938. ep.step("Running on Device..", 3);
  939. args.clear();
  940. args.push_back("-s");
  941. args.push_back(devices[p_device].id);
  942. args.push_back("shell");
  943. args.push_back("am");
  944. args.push_back("start");
  945. if ((bool)EditorSettings::get_singleton()->get("export/android/force_system_user") && devices[p_device].api_level >= 17) { // Multi-user introduced in Android 17
  946. args.push_back("--user");
  947. args.push_back("0");
  948. }
  949. args.push_back("-a");
  950. args.push_back("android.intent.action.MAIN");
  951. args.push_back("-n");
  952. args.push_back(get_package_name(package_name) + "/org.godotengine.godot.Godot");
  953. err = OS::get_singleton()->execute(adb, args, true, NULL, NULL, &rv);
  954. if (err || rv != 0) {
  955. EditorNode::add_io_error("Could not execute on device.");
  956. device_lock->unlock();
  957. return ERR_CANT_CREATE;
  958. }
  959. device_lock->unlock();
  960. return OK;
  961. }
  962. virtual Ref<Texture> get_run_icon() const {
  963. return run_icon;
  964. }
  965. virtual bool can_export(const Ref<EditorExportPreset> &p_preset, String &r_error, bool &r_missing_templates) const {
  966. r_missing_templates = find_export_template("android_debug.apk") == String() || find_export_template("android_release.apk") == String();
  967. bool valid = !r_missing_templates;
  968. String adb = EditorSettings::get_singleton()->get("export/android/adb");
  969. String err;
  970. if (!FileAccess::exists(adb)) {
  971. valid = false;
  972. err += "ADB executable not configured in editor settings.\n";
  973. }
  974. String js = EditorSettings::get_singleton()->get("export/android/jarsigner");
  975. if (!FileAccess::exists(js)) {
  976. valid = false;
  977. err += "OpenJDK 6 jarsigner not configured in editor settings.\n";
  978. }
  979. String dk = EditorSettings::get_singleton()->get("export/android/debug_keystore");
  980. if (!FileAccess::exists(dk)) {
  981. valid = false;
  982. err += "Debug Keystore not configured in editor settings.\n";
  983. }
  984. bool apk_expansion = p_preset->get("apk_expansion/enable");
  985. if (apk_expansion) {
  986. /*
  987. if (apk_expansion_salt=="") {
  988. valid=false;
  989. err+="Invalid SALT for apk expansion.\n";
  990. }
  991. */
  992. String apk_expansion_pkey = p_preset->get("apk_expansion/public_key");
  993. if (apk_expansion_pkey == "") {
  994. valid = false;
  995. err += "Invalid public key for apk expansion.\n";
  996. }
  997. }
  998. r_error = err;
  999. return valid;
  1000. }
  1001. virtual String get_binary_extension() const {
  1002. return "apk";
  1003. }
  1004. virtual Error export_project(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags = 0) {
  1005. String src_apk;
  1006. EditorProgress ep("export", "Exporting for Android", 105);
  1007. if (p_debug)
  1008. src_apk = p_preset->get("custom_package/debug");
  1009. else
  1010. src_apk = p_preset->get("custom_package/release");
  1011. src_apk = src_apk.strip_edges();
  1012. if (src_apk == "") {
  1013. if (p_debug) {
  1014. src_apk = find_export_template("android_debug.apk");
  1015. } else {
  1016. src_apk = find_export_template("android_release.apk");
  1017. }
  1018. if (src_apk == "") {
  1019. EditorNode::add_io_error("Package not found: " + src_apk);
  1020. return ERR_FILE_NOT_FOUND;
  1021. }
  1022. }
  1023. FileAccess *src_f = NULL;
  1024. zlib_filefunc_def io = zipio_create_io_from_file(&src_f);
  1025. ep.step("Creating APK", 0);
  1026. unzFile pkg = unzOpen2(src_apk.utf8().get_data(), &io);
  1027. if (!pkg) {
  1028. EditorNode::add_io_error("Could not find template APK to export:\n" + src_apk);
  1029. return ERR_FILE_NOT_FOUND;
  1030. }
  1031. ERR_FAIL_COND_V(!pkg, ERR_CANT_OPEN);
  1032. int ret = unzGoToFirstFile(pkg);
  1033. zlib_filefunc_def io2 = io;
  1034. FileAccess *dst_f = NULL;
  1035. io2.opaque = &dst_f;
  1036. String unaligned_path = EditorSettings::get_singleton()->get_cache_dir().plus_file("tmpexport-unaligned.apk");
  1037. zipFile unaligned_apk = zipOpen2(unaligned_path.utf8().get_data(), APPEND_STATUS_CREATE, NULL, &io2);
  1038. bool export_x86 = p_preset->get("architecture/x86");
  1039. bool export_arm = p_preset->get("architecture/arm");
  1040. bool export_arm64 = p_preset->get("architecture/arm64");
  1041. bool use_32_fb = p_preset->get("graphics/32_bits_framebuffer");
  1042. bool immersive = p_preset->get("screen/immersive_mode");
  1043. bool _signed = p_preset->get("package/signed");
  1044. bool apk_expansion = p_preset->get("apk_expansion/enable");
  1045. String cmdline = p_preset->get("command_line/extra_args");
  1046. int version_code = p_preset->get("version/code");
  1047. String version_name = p_preset->get("version/name");
  1048. String package_name = p_preset->get("package/unique_name");
  1049. String apk_expansion_pkey = p_preset->get("apk_expansion/public_key");
  1050. String release_keystore = p_preset->get("keystore/release");
  1051. String release_username = p_preset->get("keystore/release_user");
  1052. String release_password = p_preset->get("keystore/release_password");
  1053. while (ret == UNZ_OK) {
  1054. //get filename
  1055. unz_file_info info;
  1056. char fname[16384];
  1057. ret = unzGetCurrentFileInfo(pkg, &info, fname, 16384, NULL, 0, NULL, 0);
  1058. bool skip = false;
  1059. String file = fname;
  1060. Vector<uint8_t> data;
  1061. data.resize(info.uncompressed_size);
  1062. //read
  1063. unzOpenCurrentFile(pkg);
  1064. unzReadCurrentFile(pkg, data.ptr(), data.size());
  1065. unzCloseCurrentFile(pkg);
  1066. //write
  1067. if (file == "AndroidManifest.xml") {
  1068. _fix_manifest(p_preset, data, p_flags & (DEBUG_FLAG_DUMB_CLIENT | DEBUG_FLAG_REMOTE_DEBUG));
  1069. }
  1070. if (file == "resources.arsc") {
  1071. _fix_resources(p_preset, data);
  1072. }
  1073. if (file == "res/drawable/icon.png") {
  1074. String icon = p_preset->get("package/icon");
  1075. icon = icon.strip_edges();
  1076. bool found = false;
  1077. if (icon != "" && icon.ends_with(".png")) {
  1078. FileAccess *f = FileAccess::open(icon, FileAccess::READ);
  1079. if (f) {
  1080. data.resize(f->get_len());
  1081. f->get_buffer(data.ptr(), data.size());
  1082. memdelete(f);
  1083. found = true;
  1084. }
  1085. }
  1086. if (!found) {
  1087. String appicon = ProjectSettings::get_singleton()->get("application/config/icon");
  1088. if (appicon != "" && appicon.ends_with(".png")) {
  1089. FileAccess *f = FileAccess::open(appicon, FileAccess::READ);
  1090. if (f) {
  1091. data.resize(f->get_len());
  1092. f->get_buffer(data.ptr(), data.size());
  1093. memdelete(f);
  1094. }
  1095. }
  1096. }
  1097. }
  1098. if (file == "lib/x86/*.so" && !export_x86) {
  1099. skip = true;
  1100. }
  1101. if (file.match("lib/armeabi*/*.so") && !export_arm) {
  1102. skip = true;
  1103. }
  1104. if (file.match("lib/arm64*/*.so") && !export_arm64) {
  1105. skip = true;
  1106. }
  1107. if (file.begins_with("META-INF") && _signed) {
  1108. skip = true;
  1109. }
  1110. print_line("ADDING: " + file);
  1111. if (!skip) {
  1112. // Respect decision on compression made by AAPT for the export template
  1113. const bool uncompressed = info.compression_method == 0;
  1114. zip_fileinfo zipfi = get_zip_fileinfo();
  1115. zipOpenNewFileInZip(unaligned_apk,
  1116. file.utf8().get_data(),
  1117. &zipfi,
  1118. NULL,
  1119. 0,
  1120. NULL,
  1121. 0,
  1122. NULL,
  1123. uncompressed ? 0 : Z_DEFLATED,
  1124. Z_DEFAULT_COMPRESSION);
  1125. zipWriteInFileInZip(unaligned_apk, data.ptr(), data.size());
  1126. zipCloseFileInZip(unaligned_apk);
  1127. }
  1128. ret = unzGoToNextFile(pkg);
  1129. }
  1130. ep.step("Adding Files..", 1);
  1131. Error err = OK;
  1132. Vector<String> cl = cmdline.strip_edges().split(" ");
  1133. for (int i = 0; i < cl.size(); i++) {
  1134. if (cl[i].strip_edges().length() == 0) {
  1135. cl.remove(i);
  1136. i--;
  1137. }
  1138. }
  1139. gen_export_flags(cl, p_flags);
  1140. if (p_flags & DEBUG_FLAG_DUMB_CLIENT) {
  1141. /*String host = EditorSettings::get_singleton()->get("filesystem/file_server/host");
  1142. int port = EditorSettings::get_singleton()->get("filesystem/file_server/post");
  1143. String passwd = EditorSettings::get_singleton()->get("filesystem/file_server/password");
  1144. cl.push_back("--remote-fs");
  1145. cl.push_back(host+":"+itos(port));
  1146. if (passwd!="") {
  1147. cl.push_back("--remote-fs-password");
  1148. cl.push_back(passwd);
  1149. }*/
  1150. } else {
  1151. //all files
  1152. if (apk_expansion) {
  1153. String apkfname = "main." + itos(version_code) + "." + get_package_name(package_name) + ".obb";
  1154. String fullpath = p_path.get_base_dir().plus_file(apkfname);
  1155. err = save_pack(p_preset, fullpath);
  1156. if (err != OK) {
  1157. EditorNode::add_io_error("Could not write expansion package file: " + apkfname);
  1158. return OK;
  1159. }
  1160. cl.push_back("--use_apk_expansion");
  1161. cl.push_back("--apk_expansion_md5");
  1162. cl.push_back(FileAccess::get_md5(fullpath));
  1163. cl.push_back("--apk_expansion_key");
  1164. cl.push_back(apk_expansion_pkey.strip_edges());
  1165. } else {
  1166. APKExportData ed;
  1167. ed.ep = &ep;
  1168. ed.apk = unaligned_apk;
  1169. err = export_project_files(p_preset, save_apk_file, &ed);
  1170. }
  1171. }
  1172. if (use_32_fb)
  1173. cl.push_back("--use_depth_32");
  1174. if (immersive)
  1175. cl.push_back("--use_immersive");
  1176. if (cl.size()) {
  1177. //add comandline
  1178. Vector<uint8_t> clf;
  1179. clf.resize(4);
  1180. encode_uint32(cl.size(), &clf[0]);
  1181. for (int i = 0; i < cl.size(); i++) {
  1182. CharString txt = cl[i].utf8();
  1183. int base = clf.size();
  1184. clf.resize(base + 4 + txt.length());
  1185. encode_uint32(txt.length(), &clf[base]);
  1186. copymem(&clf[base + 4], txt.ptr(), txt.length());
  1187. print_line(itos(i) + " param: " + cl[i]);
  1188. }
  1189. zip_fileinfo zipfi = get_zip_fileinfo();
  1190. zipOpenNewFileInZip(unaligned_apk,
  1191. "assets/_cl_",
  1192. &zipfi,
  1193. NULL,
  1194. 0,
  1195. NULL,
  1196. 0,
  1197. NULL,
  1198. 0, // No compress (little size gain and potentially slower startup)
  1199. Z_DEFAULT_COMPRESSION);
  1200. zipWriteInFileInZip(unaligned_apk, clf.ptr(), clf.size());
  1201. zipCloseFileInZip(unaligned_apk);
  1202. }
  1203. zipClose(unaligned_apk, NULL);
  1204. unzClose(pkg);
  1205. if (err) {
  1206. return err;
  1207. }
  1208. if (_signed) {
  1209. String jarsigner = EditorSettings::get_singleton()->get("export/android/jarsigner");
  1210. if (!FileAccess::exists(jarsigner)) {
  1211. EditorNode::add_io_error("'jarsigner' could not be found.\nPlease supply a path in the editor settings.\nResulting apk is unsigned.");
  1212. return OK;
  1213. }
  1214. String keystore;
  1215. String password;
  1216. String user;
  1217. if (p_debug) {
  1218. keystore = EditorSettings::get_singleton()->get("export/android/debug_keystore");
  1219. password = EditorSettings::get_singleton()->get("export/android/debug_keystore_pass");
  1220. user = EditorSettings::get_singleton()->get("export/android/debug_keystore_user");
  1221. ep.step("Signing Debug APK..", 103);
  1222. } else {
  1223. keystore = release_keystore;
  1224. password = release_password;
  1225. user = release_username;
  1226. ep.step("Signing Release APK..", 103);
  1227. }
  1228. if (!FileAccess::exists(keystore)) {
  1229. EditorNode::add_io_error("Could not find keystore, unable to export.");
  1230. return ERR_FILE_CANT_OPEN;
  1231. }
  1232. List<String> args;
  1233. args.push_back("-digestalg");
  1234. args.push_back("SHA1");
  1235. args.push_back("-sigalg");
  1236. args.push_back("MD5withRSA");
  1237. String tsa_url = EditorSettings::get_singleton()->get("export/android/timestamping_authority_url");
  1238. if (tsa_url != "") {
  1239. args.push_back("-tsa");
  1240. args.push_back(tsa_url);
  1241. }
  1242. args.push_back("-verbose");
  1243. args.push_back("-keystore");
  1244. args.push_back(keystore);
  1245. args.push_back("-storepass");
  1246. args.push_back(password);
  1247. args.push_back(unaligned_path);
  1248. args.push_back(user);
  1249. int retval;
  1250. OS::get_singleton()->execute(jarsigner, args, true, NULL, NULL, &retval);
  1251. if (retval) {
  1252. EditorNode::add_io_error("'jarsigner' returned with error #" + itos(retval));
  1253. return ERR_CANT_CREATE;
  1254. }
  1255. ep.step("Verifying APK..", 104);
  1256. args.clear();
  1257. args.push_back("-verify");
  1258. args.push_back("-keystore");
  1259. args.push_back(keystore);
  1260. args.push_back(unaligned_path);
  1261. args.push_back("-verbose");
  1262. OS::get_singleton()->execute(jarsigner, args, true, NULL, NULL, &retval);
  1263. if (retval) {
  1264. EditorNode::add_io_error("'jarsigner' verification of APK failed. Make sure to use jarsigner from Java 6.");
  1265. return ERR_CANT_CREATE;
  1266. }
  1267. }
  1268. // Let's zip-align (must be done after signing)
  1269. static const int ZIP_ALIGNMENT = 4;
  1270. ep.step("Aligning APK..", 105);
  1271. unzFile tmp_unaligned = unzOpen2(unaligned_path.utf8().get_data(), &io);
  1272. if (!tmp_unaligned) {
  1273. EditorNode::add_io_error("Could not find temp unaligned APK.");
  1274. return ERR_FILE_NOT_FOUND;
  1275. }
  1276. ERR_FAIL_COND_V(!tmp_unaligned, ERR_CANT_OPEN);
  1277. ret = unzGoToFirstFile(tmp_unaligned);
  1278. io2 = io;
  1279. dst_f = NULL;
  1280. io2.opaque = &dst_f;
  1281. zipFile final_apk = zipOpen2(p_path.utf8().get_data(), APPEND_STATUS_CREATE, NULL, &io2);
  1282. // Take files from the unaligned APK and write them out to the aligned one
  1283. // in raw mode, i.e. not uncompressing and recompressing, aligning them as needed,
  1284. // following what is done in https://github.com/android/platform_build/blob/master/tools/zipalign/ZipAlign.cpp
  1285. int bias = 0;
  1286. while (ret == UNZ_OK) {
  1287. unz_file_info info;
  1288. memset(&info, 0, sizeof(info));
  1289. char fname[16384];
  1290. char extra[16384];
  1291. ret = unzGetCurrentFileInfo(tmp_unaligned, &info, fname, 16384, extra, 16384 - ZIP_ALIGNMENT, NULL, 0);
  1292. String file = fname;
  1293. Vector<uint8_t> data;
  1294. data.resize(info.compressed_size);
  1295. // read
  1296. int method, level;
  1297. unzOpenCurrentFile2(tmp_unaligned, &method, &level, 1); // raw read
  1298. long file_offset = unzGetCurrentFileZStreamPos64(tmp_unaligned);
  1299. unzReadCurrentFile(tmp_unaligned, data.ptr(), data.size());
  1300. unzCloseCurrentFile(tmp_unaligned);
  1301. // align
  1302. int padding = 0;
  1303. if (!info.compression_method) {
  1304. // Uncompressed file => Align
  1305. long new_offset = file_offset + bias;
  1306. padding = (ZIP_ALIGNMENT - (new_offset % ZIP_ALIGNMENT)) % ZIP_ALIGNMENT;
  1307. }
  1308. memset(extra + info.size_file_extra, 0, padding);
  1309. // write
  1310. zip_fileinfo zipfi = get_zip_fileinfo();
  1311. zipOpenNewFileInZip2(final_apk,
  1312. file.utf8().get_data(),
  1313. &zipfi,
  1314. extra,
  1315. info.size_file_extra + padding,
  1316. NULL,
  1317. 0,
  1318. NULL,
  1319. method,
  1320. level,
  1321. 1); // raw write
  1322. zipWriteInFileInZip(final_apk, data.ptr(), data.size());
  1323. zipCloseFileInZipRaw(final_apk, info.uncompressed_size, info.crc);
  1324. bias += padding;
  1325. ret = unzGoToNextFile(tmp_unaligned);
  1326. }
  1327. zipClose(final_apk, NULL);
  1328. unzClose(tmp_unaligned);
  1329. if (err) {
  1330. return err;
  1331. }
  1332. return OK;
  1333. }
  1334. virtual void get_platform_features(List<String> *r_features) {
  1335. r_features->push_back("mobile");
  1336. r_features->push_back("Android");
  1337. }
  1338. EditorExportAndroid() {
  1339. Ref<Image> img = memnew(Image(_android_logo));
  1340. logo.instance();
  1341. logo->create_from_image(img);
  1342. img = Ref<Image>(memnew(Image(_android_run_icon)));
  1343. run_icon.instance();
  1344. run_icon->create_from_image(img);
  1345. device_lock = Mutex::create();
  1346. device_thread = Thread::create(_device_poll_thread, this);
  1347. devices_changed = true;
  1348. quit_request = false;
  1349. }
  1350. ~EditorExportAndroid() {
  1351. quit_request = true;
  1352. Thread::wait_to_finish(device_thread);
  1353. memdelete(device_lock);
  1354. memdelete(device_thread);
  1355. }
  1356. };
  1357. void register_android_exporter() {
  1358. String exe_ext;
  1359. if (OS::get_singleton()->get_name() == "Windows") {
  1360. exe_ext = "*.exe";
  1361. }
  1362. EDITOR_DEF("export/android/adb", "");
  1363. EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::STRING, "export/android/adb", PROPERTY_HINT_GLOBAL_FILE, exe_ext));
  1364. EDITOR_DEF("export/android/jarsigner", "");
  1365. EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::STRING, "export/android/jarsigner", PROPERTY_HINT_GLOBAL_FILE, exe_ext));
  1366. EDITOR_DEF("export/android/debug_keystore", "");
  1367. EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::STRING, "export/android/debug_keystore", PROPERTY_HINT_GLOBAL_FILE, "keystore"));
  1368. EDITOR_DEF("export/android/debug_keystore_user", "androiddebugkey");
  1369. EDITOR_DEF("export/android/debug_keystore_pass", "android");
  1370. EDITOR_DEF("export/android/force_system_user", false);
  1371. EDITOR_DEF("export/android/timestamping_authority_url", "");
  1372. EDITOR_DEF("export/android/shutdown_adb_on_exit", true);
  1373. Ref<EditorExportAndroid> exporter = Ref<EditorExportAndroid>(memnew(EditorExportAndroid));
  1374. EditorExport::get_singleton()->add_export_platform(exporter);
  1375. }