关于CAPP新项目配置文件 .capp/config.json
// 配置文件在工程目录下 .capp/config.json
{
"version": "0.1.0", //当前配置文件版本
//安卓平台
"android":{
"name":"", //名称
”type":"", //运行类型 capp web
"version_name":"", //版本名
"version_code":"",//内部版本号
"appid":"com.example.app" //包名
"app_name":"我的应用", //应用名
"icon":"icon.png", //应用图标
"title":"我的应用", //标题名
"window_feature":"FEATURE_OPTIONS_PANEL", //窗口类型
"screen":"",//屏幕模式
"run_name":"", //运行文件名
"theme":"",//主题
packtype:"",//打包类型 手机C自带0 第三方打包1 导出工程2
args:["-std=c99","-DDEBUG","-DCAPP"],//传参
"request_permission":true,//启动申请权限
"permissions":[],//申请权限列表
"run.bat\n",//运行之前调用的shell命令
//运行时调用的intent
launcher_intent:{
"action":"",
"type":"",
"data":"",
"extras":{
"name":""
}
},//运行调用的intent参数
}
}