Does anyone know how I can enable the App Bundle (Google Play) option when building with the BuildPipeline? Trying to get this to work with our CI server, this is the code currently used to create an APK:
BuildPlayerOptions prodBuildPlayerOptions = new BuildPlayerOptions();
prodBuildPlayerOptions.scenes = scenes;
prodBuildPlayerOptions.locationPathName = $"PSS.Prod.{baseBuildFileName}.apk";
prodBuildPlayerOptions.target = BuildTarget.Android;
prodBuildPlayerOptions.options = BuildOptions.None;
BuildPipeline.BuildPlayer(prodBuildPlayerOptions);
Any help would be greatly appreciated! Cheers, Thomas
↧