2020-04-21 22:05:46 +00:00
|
|
|
|
using System;
|
|
|
|
|
using UnityEditor;
|
|
|
|
|
|
|
|
|
|
namespace UnityBuilderAction.Versioning
|
|
|
|
|
{
|
|
|
|
|
public class VersionApplicator
|
|
|
|
|
{
|
2020-04-26 18:22:09 +00:00
|
|
|
|
public static void SetVersion(string version)
|
2020-04-21 22:05:46 +00:00
|
|
|
|
{
|
2020-04-26 18:22:09 +00:00
|
|
|
|
if (version == "none") {
|
|
|
|
|
return;
|
2020-04-21 22:05:46 +00:00
|
|
|
|
}
|
2020-06-24 22:02:05 +00:00
|
|
|
|
|
2020-04-21 22:05:46 +00:00
|
|
|
|
Apply(version);
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-24 22:02:05 +00:00
|
|
|
|
public static void SetAndroidVersionCode(string androidVersionCode) {
|
|
|
|
|
PlayerSettings.Android.bundleVersionCode = Int32.Parse(androidVersionCode);
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-21 22:05:46 +00:00
|
|
|
|
static void Apply(string version)
|
|
|
|
|
{
|
|
|
|
|
PlayerSettings.bundleVersion = version;
|
2020-07-06 01:41:21 +00:00
|
|
|
|
PlayerSettings.macOS.buildNumber = version;
|
2020-04-21 22:05:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|