[help] how to build and run cocos2d-x 3.2 lua project

[help] how to build and run cocos2d-x 3.2 lua project

1)cocos2d-x 3.2 create lua project, I found there is not android_build.py;
2)so I use cocos compile -p android to build, and get the message:
[armeabi] Install : libcocos2dlua.so => libs/armeabi/libcocos2dlua.so
make: Leaving directory `/Users/xx/Documents/cocos2d-x-3.2/projects/xx/frameworks/runtime-src/proj.android’
building apk
Android platform not specified, searching a default one…
Can’t find right android-platform for project : “/Users/xx/Documents/cocos2d-x-3.2/projects/xx/frameworks/runtime-src/proj.android”. The android-platform should be equal/larger than 19
3)Eclipse run the game, and get message:
08-27 23:36:28.562: D/cocos2d-x debug info(23946): can not get file data of /usr/local/share/lua/5.1/?/init.luaDeprecatedEnum.lua
08-27 23:36:28.562: D/cocos2d-x debug info(23946): [LUA ERROR] [string “require “DeprecatedEnum.lua””]:1: module ‘DeprecatedEnum.lua’ not found:
08-27 23:36:28.562: D/cocos2d-x debug info(23946): no field package.preload[‘DeprecatedEnum.lua’]
08-27 23:36:28.562: D/cocos2d-x debug info(23946): no file ‘./DeprecatedEnum/lua.lua’
08-27 23:36:28.562: D/cocos2d-x debug info(23946): no file ‘/usr/local/share/luajit-2.0.1/DeprecatedEnum/lua.lua’
08-27 23:36:28.562: D/cocos2d-x debug info(23946): no file ‘/usr/local/share/lua/5.1/DeprecatedEnum/lua.lua’
08-27 23:36:28.562: D/cocos2d-x debug info(23946): no file ‘/usr/local/share/lua/5.1/DeprecatedEnum/lua/init.lua’
08-27 23:36:28.562: D/cocos2d-x debug info(23946): no file ‘./DeprecatedEnum/lua.so’
08-27 23:36:28.562: D/cocos2d-x debug info(23946): no file ‘/usr/local/lib/lua/5.1/DeprecatedEnum/lua.so’
08-27 23:36:28.562: D/cocos2d-x debug info(23946): no file ‘/usr/local/lib/lua/5.1/loadall.so’
08-27 23:36:28.562: D/cocos2d-x debug info(23946): no file ‘./DeprecatedEnum.so’
08-27 23:36:28.562: D/cocos2d-x debug info(23946): no file ‘/usr/local/lib/lua/5.1/DeprecatedEnum.so’
08-27 23:36:28.562: D/cocos2d-x debug info(23946): no file ‘/usr/local/lib/lua/5.1/loadall.so’
08-27 23:36:28.718: D/cocos2d-x debug info(23946): can not get file data of /usr/local/share/lua/5.1/?/init.luaDeprecatedClass.lua

I used the cocos2d-x 3.2 to check,and didn’t reproduce your problem.My command line operation as follows:
1.cocos new -l lua
2.cocos compile -p android -j 4
3.cocos run -p android -j 4

From your error msg,it seems that search paths was error.Did you modify some codes and can you check that DeprecatedEnum.lua is in frameworks/cocos2d-x/cocos/scripting/lua-bindings/sript

for release build
will reproduce the issue
for example
cocos compile -p android -m release

in my case,
DeprecatedEnum.lua exists in the directory
please help me