This commit is contained in:
chenxi 2023-04-21 23:16:26 +08:00
parent 8c4fb9c3c9
commit 320ce037ce
3 changed files with 4 additions and 4 deletions

View File

@ -34,12 +34,12 @@ namespace BFEditor.Build
public bool IsGPChannel() public bool IsGPChannel()
{ {
return bundleName == "com.juzu.b6"; return bundleName == "com.juzu.b6.publish.android";
} }
public bool IsGPOfficial() public bool IsGPOfficial()
{ {
return bundleName == "com.juzu.b6"; return bundleName == "com.juzu.b6.publish.android";
} }
// dev包使用mono编译不会导出as工程 // dev包使用mono编译不会导出as工程

View File

@ -77,7 +77,7 @@ namespace BF
{"com.juzu.b6.release.ios", "http://game.juzugame.com:3000"}, {"com.juzu.b6.release.ios", "http://game.juzugame.com:3000"},
// gp // gp
{"com.juzu.b6", "https://b5-entrance.bigfoot-studio.link"}, {"com.juzu.b6.publish.android", "https://b5-entrance.bigfoot-studio.link"},
}; };
//combine url解析的数据 //combine url解析的数据

View File

@ -48,7 +48,7 @@ namespace BF
{"com.juzu.b6.release.android", new BFLanguageInfo(new List<string>{"en"})}, {"com.juzu.b6.release.android", new BFLanguageInfo(new List<string>{"en"})},
{"com.juzu.b6.release.ios", new BFLanguageInfo(new List<string>{"en"})}, {"com.juzu.b6.release.ios", new BFLanguageInfo(new List<string>{"en"})},
// 这个是gp渠道 // 这个是gp渠道
{"com.juzu.b6", new BFLanguageInfo(new List<string>{"en", "cn", "zh", "th", "ru", "id", "vi"})}, {"com.juzu.b6.publish.android", new BFLanguageInfo(new List<string>{"en", "cn", "zh", "th", "ru", "id", "vi"})},
{"com.juzu.b6.ios", new BFLanguageInfo(new List<string>{"en"})}, {"com.juzu.b6.ios", new BFLanguageInfo(new List<string>{"en"})},
}; };