This commit is contained in:
chenxi 2023-04-21 23:10:01 +08:00
parent 5de5ab0693
commit f75248ee11
3 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@ namespace BFEditor.Build
BFPlatformOptions platform = BFPlatformOptions.AndroidDev;
const string ANDROID_DEV_PACKAGE_NAME = "com.juzu.b6.dev.android";
const string ANDROID_RELEASE_PACKAGE_NAME = "com.juzu.b6.release.android";
const string ANDROID_GP_PACKAGE_NAME = "com.juzu.b6";
const string ANDROID_GP_PACKAGE_NAME = "com.juzu.b6.publish.android";
const string IOS_PACKAGE_NAME = "com.juzu.b6.dev.ios";
public BuildProjectWindow()

View File

@ -131,11 +131,11 @@ namespace BFEditor.Build
// 应用名
if (buildInfo.IsPublish())
{
PlayerSettings.productName = "K.O";
PlayerSettings.productName = "b6";
}
else
{
PlayerSettings.productName = development ? "b5-dev" : "b5-release";
PlayerSettings.productName = development ? "b6-dev" : "b6-release";
}
// BuildType设置dev/release
EditorUserBuildSettings.androidBuildType = development ? AndroidBuildType.Debug : AndroidBuildType.Release;

View File

@ -105,7 +105,7 @@ namespace BFEditor.Build
}
else
{
PlayerSettings.productName = development ? "b5-dev" : "b5-release";
PlayerSettings.productName = development ? "b6-dev" : "b6-release";
}
// BuildType设置dev/release