guofei 6c5478da66 | ||
---|---|---|
cocos-embed | ||
networks | ||
single-html | ||
tiktok | ||
.DS_Store | ||
.gitignore | ||
README.md | ||
package-lock.json | ||
package.json |
README.md
cocos js开发
将cocos-embed/SoyooFacade.ts
加进项目
然后注释,调用对应的SoyooFacade对象的方法。
必须要调用的方法有:
SoyooFacade.ReportLifeCycle(SoyooLifecyle.Ready)
SoyooFacade.ReportLifeCycle(SoyooLifecyle.Start)
SoyooFacade.ReportLifeCycle(SoyooLifecyle.Complete)
SoyooFacade.InstallGame()
zip
把networks/facebook.js
复制到web-mobile目录下。
在wweb-mobile/index.html
的"</head>"的上一行添加代码
<script src="facebook.js" charset="utf-8"></script>
moloco
把networks/moloco.js
复制到web-mobile目录下。
在wweb-mobile/index.html
的"</head>"的上一行添加代码
<script src="moloco.js" charset="utf-8"></script>
把networks/google.js
复制到web-mobile目录下。
在wweb-mobile/index.html
的"</head>"的上一行添加代码
<meta name="ad.size" content="width=480,height=320">
<script src="google.js" charset="utf-8"></script>
tiktok
把tiktok/tiktok.js
和tiktok/config.json
复制到web-mobile目录下。
在wweb-mobile/index.html
的"</head>"的上一行添加代码
<script src="tiktok.js" charset="utf-8"></script>
单HTML渠道
环境配置
需要安装nodejs
打开soyoo-cocos后,先执行npm install
安装依赖
预处理html
- 把目标目录web-mobile复制到soyoo-cocos目录下。
- 删掉index.html里的js代码部分
- 在body最后加上 `
渠道处理
applovin
- 把networks/applovin.js 复制到web-mobile下
- 编辑复制的applovin.js, 在前几行填入对应的iosUrl和androidUrl
- 编辑index.html,在body最后加上
<script src="applovin.js" charset="utf-8"></script>
applovin
- 把networks/mintegral.js 复制到web-mobile下
- 编辑index.html,在body最后加上
<script src="mintegral.js" charset="utf-8"></script>
打包
执行命令 node single-html/build.js
生成目标文件 dist/index.html
即为目标文件