Skip to content

Commit

Permalink
📦 1.2.1 Release
Browse files Browse the repository at this point in the history
- Minor update fixing a compilation issue when targeting android build platform.
  • Loading branch information
JonathanMCarter committed Mar 5, 2024
1 parent 6cfd527 commit d768dc9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void OnPreBuildDialogue(BuildTarget target)
{
if (target != BuildTarget.Android) return;

if (UtilEditor.BuildOptions.androidUpdateBundleCode != AssetUsageType.PromptMe)
if (UtilEditor.BuildOptions.AndroidBundleCodeUsage != AssetUsageType.PromptMe)
{
BuildHandler.Register(new HandlerDialogueData(UtilEditor.GetClassName<AndroidBundleCodeUpdater>(), true));
return;
Expand Down Expand Up @@ -76,7 +76,7 @@ public void OnPreBuildDialogue(BuildTarget target)
public void OnBuildVersionIncremented(BuildTarget buildTarget)
{
if (buildTarget != BuildTarget.Android) return;
if (UtilEditor.BuildOptions.androidUpdateBundleCode == AssetUsageType.Disabled) return;
if (UtilEditor.BuildOptions.AndroidBundleCodeUsage == AssetUsageType.Disabled) return;
if (!BuildHandler.Get<AndroidBundleCodeUpdater>().Choice) return;

PlayerSettings.Android.bundleVersionCode++;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ public static class AssetVersionData
/// <summary>
/// The version number of the asset...
/// </summary>
public static string VersionNumber => "1.2.0";
public static string VersionNumber => "1.2.1";


/// <summary>
/// The date this release of the asset was submitted for release...
/// </summary>
public static string ReleaseDate => "14/02/2024";
public static string ReleaseDate => "05/03/2024";
}
}

0 comments on commit d768dc9

Please sign in to comment.