Skip to content

Commit

Permalink
com.utilities.buildpipeine 1.5.7 (#47)
Browse files Browse the repository at this point in the history
- fixed Android appBundle file ext
  • Loading branch information
StephenHodgson authored Nov 16, 2024
1 parent 539311d commit f8627a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class AndroidBuildInfo : BuildInfo
public override BuildTargetGroup BuildTargetGroup => BuildTargetGroup.Android;

/// <inheritdoc />
public override string ExecutableFileExtension => ".apk";
public override string ExecutableFileExtension => EditorUserBuildSettings.buildAppBundle ? ".abb" : ".apk";

/// <inheritdoc />
public override string FullOutputPath => PlayerSettings.Android.buildApkPerCpuArchitecture || EditorUserBuildSettings.exportAsGoogleAndroidProject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Utilities.BuildPipeline",
"description": "The Build Pipeline Utilities aims to give developers more tools and options when making builds with the command line or with continuous integration.",
"keywords": [],
"version": "1.5.6",
"version": "1.5.7",
"unity": "2019.4",
"documentationUrl": "https://github.com/RageAgainstThePixel/com.utilities.buildpipeine#documentation",
"changelogUrl": "https://github.com/RageAgainstThePixel/com.utilities.buildpipeine/releases",
Expand Down

0 comments on commit f8627a9

Please sign in to comment.