上次用了纯bat写了个脚本生成APK包,感觉bat扩展性和语法差的令人发指,这次用lua重写了一个脚本
可以根据需要自行扩展了。
使用前tool path 还有 target path的前两个还是需要自己设置下。
一些小的函数 jit_file copy_file 我就不贴了 比较简单,用来luajit 和 拷贝。
-- Authors: sails鸢@oschina -- Date: 20th , August , 2014 -- Note: -- This is used for Cocos2dx + Lua -- This is a script to making .APK file for android platform -- Make sure you have installed java, ant, android sdk, ndk, svn, jit -- Also plz check and rewrite following paths before you use this script -- Remarks: -- The script will update your cocos engine directory and your Lua script which probably is Resources -- then it should jit your Lua files , use ASMaker to encrypt your Lua-jit files -- all files and resources will move to this folder proj.android/assets -- finally it will make a .APK package with ANT require('support') --tools paths local JAVA_HOME = 'C:\\Program Files\\Java\\jdk1.8.0_05' local ANT_HOME = 'D:\\ProgramSoftware\\apache-ant-1.9.4' local ANDROID_HOME = '"D:\\ProgramSoftware\\android sdk\\sdk"' local NDK_HOME = 'D:\\ProgramSoftware\\android-ndk-r9d-windows-x86_64\\android-ndk-r9d' local SVN_HOME = 'C:\\Program Files\\TortoiseSVN\\bin\\' --target paths local ENGINE_DIR = 'D:\\engine' local WORK_DIR = 'D:\\engine\\projects\\XXXX\\proj.android' local RESOURCES_DIR = WORK_DIR ..'\\..\\Resources' local ASSETS_DIR = WORK_DIR ..'\\assets' --function detect directory local function dir_exist(dir) return os.execute(string.format('pushd "%s">nul 2>nul && popd', dir)) end --remove old assets if dir_exist(ASSETS_DIR) then rmdir(ASSETS_DIR) end --remove old APK local old_apk , err = io.open(WORK_DIR..'\\bin\\XXXX-release.apk') if err == nil then old_apk:close() delfile(WORK_DIR..'\\bin\\XXXX-release.apk') end --svn update --check --svn_up(ENGINE_DIR) --svn_up(WORK_DIR..'\\..') --luajit --iter directory local cmd = string.format("pushd %q &dir /b /s &popd" , RESOURCES_DIR) local file_list = io.popen(cmd) for line in file_list:lines() do line_to = string.gsub(line, 'Resources', 'Resources_jit') if dir_exist(line) then check_mk_path(line_to) else if(string.find(line,'.lua$')) then jit_file(WORK_DIR, line , line_to) else copy_file(line , line_to) end end end file_list:close() --encryption with ASmaker local enc_cmd = WORK_DIR..'\\ASmaker.exe'..' -i '..WORK_DIR..'\\..\\Resources_jit'.." -o "..ASSETS_DIR..' -f .lua -e .exe' local enc_re = run_one_cmd(enc_cmd) if enc_re:find ("失败") then print("ASmaker加密文件夹失败!",enc_re) os.exit(1) end --ndk build local ndk_cmd = 'call '..NDK_HOME..'\\ndk-build'..' -C '..WORK_DIR..' '..'NDK_MODULE_PATH='..ENGINE_DIR..';'..ENGINE_DIR..'\\cocos2dx\\platform\\third_party\\android\\prebuilt' local ndk_re = run_one_cmd(ndk_cmd) if ndk_re:find ("error") then print("NDK build失败!",ndk_re) os.exit(1) end --android update local and_cmd = 'call '..ANDROID_HOME..'\\tools\\android'..' update project -p '..WORK_DIR local and_re = run_one_cmd(and_cmd) and_cmd = 'call "'..ANDROID_HOME..'\\tools\\android"'..' update lib-project -p '..ENGINE_DIR..'\\cocos2dx\\platform\\android\\java' and_re = run_one_cmd(and_cmd) --ant local ant_cmd = 'pushd '..WORK_DIR..'&call '..ANT_HOME..'\\bin\\ant release' local ant_re = run_one_cmd(ant_cmd) if ant_re:find ("failed") then print("生成APK失败!",ant_re) os.exit(1) end
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
暂无评论...
更新日志
2024年11月22日
2024年11月22日
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]