欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Lua腳本自動生成APK包

 更新時間:2015年04月20日 09:13:04   投稿:junjie  
這篇文章主要介紹了Lua腳本自動生成APK包,本文腳本適用于cocos2dx+lua的項目,需要的朋友可以參考下

上次用了純bat寫了個腳本生成APK包,感覺bat擴展性和語法差的令人發(fā)指,這次用lua重寫了一個腳本
可以根據(jù)需要自行擴展了。
使用前tool path 還有 target path的前兩個還是需要自己設(shè)置下。
一些小的函數(shù) 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

相關(guān)文章

  • Lua和C++的通信流程代碼實例

    Lua和C++的通信流程代碼實例

    這篇文章主要介紹了Lua和C++的通信流程代碼實例,本文是上一篇的DEMO,本文用代碼講解Lua和C++之間的通信,需要的朋友可以參考下
    2014-09-09
  • Lua中的函數(shù)相關(guān)知識點整理匯總

    Lua中的函數(shù)相關(guān)知識點整理匯總

    這篇文章主要介紹了Lua中的函數(shù)相關(guān)知識點整理匯總,包括函數(shù)的參數(shù)傳遞和定義函數(shù)等基本知識,需要的朋友可以參考下
    2015-05-05
  • Lua字符串庫中的幾個重點函數(shù)介紹

    Lua字符串庫中的幾個重點函數(shù)介紹

    這篇文章主要介紹了Lua字符串庫中的幾個重點函數(shù)介紹,本文講解了幾個最常用的強大的字符串函數(shù)find、match、gsub、gmatch,需要的朋友可以參考下
    2014-09-09
  • Lua中執(zhí)行系統(tǒng)命令方法介紹

    Lua中執(zhí)行系統(tǒng)命令方法介紹

    這篇文章主要介紹了Lua中執(zhí)行系統(tǒng)命令方法介紹,Lua中有兩種方法可以執(zhí)行操作系統(tǒng)內(nèi)置命令,需要的朋友可以參考下
    2015-04-04
  • Lua中的協(xié)同程序之resume-yield間的數(shù)據(jù)返回研究

    Lua中的協(xié)同程序之resume-yield間的數(shù)據(jù)返回研究

    這篇文章主要介紹了Lua中的協(xié)同程序之resume-yield間的數(shù)據(jù)返回研究本文講解了resume的參數(shù)、resume函數(shù)的第二個返回值、yield的返回值等內(nèi)容,需要的朋友可以參考下
    2014-09-09
  • Lua實現(xiàn)正序和倒序的文件讀取方法

    Lua實現(xiàn)正序和倒序的文件讀取方法

    這篇文章主要介紹了Lua實現(xiàn)正序和倒序的文件讀取方法,本文講解使用table生成鏈表完成正序和倒序的文件讀入功能,需要的朋友可以參考下
    2015-04-04
  • Lua中的基本數(shù)據(jù)類型詳細介紹

    Lua中的基本數(shù)據(jù)類型詳細介紹

    這篇文章主要介紹了Lua中的基本數(shù)據(jù)類型詳細介紹,本文詳細的講解了Lua中的8種基本數(shù)據(jù)類型,需要的朋友可以參考下
    2014-09-09
  • 在Mac OS中安裝Lua的教程

    在Mac OS中安裝Lua的教程

    這篇文章主要介紹了在Mac OS中安裝Lua的教程,盡管基于Unix的Mac OS并沒有集成Lua解釋器,但安裝起來依然super easy:)需要的朋友可以參考下
    2015-07-07
  • lua文件操作詳解

    lua文件操作詳解

    Lua中關(guān)于文件處理操作是本文要介紹的內(nèi)容,主要是來了解并學(xué)習(xí)lua中文件的相關(guān)操作,具體內(nèi)容的實現(xiàn)來看本文詳解。
    2016-03-03
  • Lua多重繼承代碼實例

    Lua多重繼承代碼實例

    這篇文章主要介紹了Lua多重繼承代碼實例,本文直接給出實例代碼,需要的朋友可以參考下
    2015-04-04

最新評論