增加一些渠道
parent
631568c4b3
commit
fbb5964caf
53
README.md
53
README.md
|
@ -9,15 +9,19 @@ SoyooFacade.ReportLifeCycle(SoyooLifecyle.Complete)
|
|||
SoyooFacade.InstallGame()
|
||||
```
|
||||
|
||||
# zip
|
||||
## facebook
|
||||
# zip文件渠道
|
||||
这些渠道的最终产物是一个zip包。
|
||||
zip文件的默认打包方式,是根据以下不同渠道操作后,将web-mobile文件打包成zip。
|
||||
|
||||
## 1. 渠道处理
|
||||
### facebook
|
||||
把`networks/facebook.js`复制到web-mobile目录下。
|
||||
在w`web-mobile/index.html`的"</head>"的上一行添加代码
|
||||
```
|
||||
<script src="facebook.js" charset="utf-8"></script>
|
||||
```
|
||||
|
||||
## google
|
||||
### google
|
||||
把`networks/google.js`复制到web-mobile目录下。
|
||||
在w`web-mobile/index.html`的"</head>"的上一行添加代码
|
||||
```
|
||||
|
@ -25,7 +29,7 @@ SoyooFacade.InstallGame()
|
|||
<script src="google.js" charset="utf-8"></script>
|
||||
```
|
||||
|
||||
## tiktok
|
||||
### tiktok
|
||||
把`tiktok/tiktok.js`和`tiktok/config.json`复制到web-mobile目录下。
|
||||
在w`web-mobile/index.html`的"</head>"的上一行添加代码
|
||||
```
|
||||
|
@ -37,12 +41,23 @@ SoyooFacade.InstallGame()
|
|||
<script src= "https://sf16-muse-va.ibytedtos.com/obj/union-fe-nc-i18n/playable/sdk/playable-sdk.js"></script>
|
||||
```
|
||||
|
||||
### 2. 打包
|
||||
将web-mobile文件内容压缩成zip包。注意,zip包的第一层级需要包含index.html。
|
||||
|
||||
## vungle
|
||||
1. 把networks/mraid_support.js 复制到web-mobile下
|
||||
2. 编辑复制的mraid_support.js, 在前几行填入对应的iosUrl和androidUrl
|
||||
3. 编辑index.html,在body最后加上
|
||||
`js
|
||||
<script src="mraid_support.js" charset="utf-8"></script>
|
||||
`
|
||||
|
||||
# 单HTML渠道
|
||||
## 环境配置
|
||||
## 1. 环境配置
|
||||
需要安装nodejs
|
||||
打开soyoo-cocos后,先执行`npm install`安装依赖
|
||||
|
||||
### 预处理html
|
||||
## 2.预处理html
|
||||
0. 把目标目录web-mobile复制到soyoo-cocos目录下。
|
||||
1. 删掉index.html里的js代码部分
|
||||
2. 在body最后加上
|
||||
|
@ -53,16 +68,25 @@ SoyooFacade.InstallGame()
|
|||
|
||||
`
|
||||
|
||||
## 渠道处理
|
||||
### applovin
|
||||
1. 把networks/applovin.js 复制到web-mobile下
|
||||
2. 编辑复制的applovin.js, 在前几行填入对应的iosUrl和androidUrl
|
||||
## 3.渠道处理
|
||||
### applovin, unity, liftoff, appier
|
||||
1. 把networks/mraid_support.js 复制到web-mobile下
|
||||
2. 编辑复制的mraid_support.js, 在前几行填入对应的iosUrl和androidUrl
|
||||
3. 编辑index.html,在body最后加上
|
||||
`js
|
||||
<script src="applovin.js" charset="utf-8"></script>
|
||||
<script src="mraid_support.js" charset="utf-8"></script>
|
||||
`
|
||||
|
||||
### applovin
|
||||
### ironsource
|
||||
1. 把networks/mraid_support.js 复制到web-mobile下
|
||||
2. 编辑复制的mraid_support.js, 在前几行填入对应的iosUrl和androidUrl
|
||||
3. 编辑index.html,在body最后加上
|
||||
`js
|
||||
<script src="mraid.js"></script>
|
||||
<script src="mraid_support.js" charset="utf-8"></script>
|
||||
`
|
||||
|
||||
### mintegral
|
||||
1. 把networks/mintegral.js 复制到web-mobile下
|
||||
2. 编辑index.html,在body最后加上
|
||||
`
|
||||
|
@ -76,13 +100,12 @@ SoyooFacade.InstallGame()
|
|||
<script src="moloco.js" charset="utf-8"></script>
|
||||
```
|
||||
|
||||
## 打包
|
||||
|
||||
## 4.打包
|
||||
执行命令 `node single-html/build.js`
|
||||
生成目标文件 `dist/index.html`即为目标文件
|
||||
|
||||
|
||||
|
||||
|
||||
```css
|
||||
@media (orientation: landscape) {#splash {background-size: 15% !important;}}
|
||||
|
||||
|
|
Loading…
Reference in New Issue