SaintsBuild
a Unity build (packing) tool for Unity, mainly focused on android and ios.
Install / Use
/learn @TylerTemp/SaintsBuildREADME
SaintsBuild
SaintsBuild is a Unity build (packing) tool for Unity, mainly focused on android and ios.
Installation
-
Using OpenUPM
openupm install today.comes.saintsbuild -
Using git upm:
add to
Packages/manifest.jsonin your project{ "dependencies": { "today.comes.saintsbuild": "https://github.com/TylerTemp/SaintsBuild.git", // your other dependencies... } } -
Using a
unitypackage:Go to the Release Page to download a desired version of
unitypackageand import it to your project -
Using a git submodule:
git submodule add https://github.com/TylerTemp/SaintsBuild.git Assets/SaintsBuild
Change Log
2.0.0
- When processing an asset, it will now get backup on entering play mode or starting build, and get restored when exit play mode or exit build
- Change
IPostProcess.EditorOnPostProcessto return aboolvalue to show if the asset need to backup/restore. Has no effect for scene objects - Fix: WatchList might get purged when building. WatchList now pauses the watcher if the project is playing or building
- Move menu to
Tools/SaintsBuild
See the full change log.
Usage
Android
#if UNITY_ANDROID
using SaintsBuild.Editor;
using UnityEditor.Callbacks;
namespace SaintsBuild.Samples.Editor
{
public static class BuildAndroid
{
[PostProcessBuild(1)]
public static void OnPostGenerateGradleAndroidProject(BuildTarget target, string pathToBuiltProject)
{
if (target != BuildTarget.Android)
{
return;
}
using AndroidManifest androidAppManifest = new AndroidManifest(path);
// required for android 12 if you have activity alias etc:
androidManifest.SetActivityWithLauncherIntentAttribute("exported", "true");
androidManifest.SetApplicationTheme("dark");
androidManifest.SetStartingActivityName("CustomActivity");
androidManifest.SetHardwareAcceleration();
androidManifest.SetBillingPermission();
androidManifest.SetVibratePermission();
// other you need
androidManifest.SetPermissionAttribute("WRITE_EXTERNAL_STORAGE", 18);
// change values under `launcher/src/main/res`
AndroidRes androidRes = new AndroidRes(pathToBuiltProject);
// add new
using (AndroidValue valueXml = androidRes.CreateOrGetValue("values-b+zh+Hans/string.xml"))
{
valueXml.SetString("app_name", "简体项目");
}
using (AndroidValue valueXml = androidRes.CreateOrGetValue("values-b+zh+Hant/string.xml"))
{
valueXml.SetString("app_name", "繁體項目");
}
}
}
}
#endif
iOS
#if UNITY_IOS
using UnityEditor;
using UnityEditor.Callbacks;
using UnityEditor.iOS.Xcode;
using SaintsBuild.Editor.IOS;
using SaintsBuild.Editor.Utils.Apple;
namespace SaintsBuild.Samples.Editor
{
public static class BuildIos
{
[PostProcessBuild(1)]
public static void OnPostProcessBuildAttr(BuildTarget target, string path)
{
#region IOSPBXProject
using (IOSPBXProject iosPBXProject = new IOSPBXProject(target, path)) {
// AddFramework
iosPBXProject.AddFrameworkCoreHaptics();
iosPBXProject.AddFrameworkAdServices();
iosPBXProject.AddFrameworkAppTrackingTransparency();
iosPBXProject.AddFrameworkAdSupport();
iosPBXProject.AddFrameworkCoreTelephony();
iosPBXProject.AddFrameworkSecurity();
iosPBXProject.AddFrameworkSystemConfiguration();
iosPBXProject.AddFrameworkLibCPP();
iosPBXProject.AddFrameworkLibZ();
iosPBXProject.AddFramework("YourFrameWorkName");
// AddBuildProperty
iosPBXProject.AddBuildPropertyOtherLdFlags("-ObjC");
iosPBXProject.AddBuildProperty("yourBuildName", "params");
// AddInAppPurchase
iosPBXProject.ManagerAddInAppPurchase();
// use iosBuild.manager to add more you need
// BITCODE
// all target
iosPBXProject.SetAllBuildPropertyBitcode("NO");
// or if you want to set for each target
iosPBXProject.SetBuildPropertyBitcode(iosPBXProject.Project.GetUnityMainTargetGuid(), "NO");
iosPBXProject.SetBuildPropertyBitcode(iosPBXProject.Project.TargetGuidByName(PBXProject.GetUnityTestTargetName()), "NO");
iosPBXProject.SetBuildPropertyBitcode(iosPBXProject.Project.GetUnityFrameworkTargetGuid(), "NO");
}
#endregion
#region Plist
using (IOSPlist iosPlist = new IOSPlist(target, path)) {
// urlScheme
iosPlist.AddUrlSchemes(new[]
{
new UrlScheme("yourUrlName", "Viewer", new[] {"yourSchemes"}),
new UrlScheme("Another", "Viewer", new[] {"anotherSchemes"}),
});
// ITSAppUsesNonExemptEncryption
iosPlist.SetITSAppUsesNonExemptEncryption(false);
// if you manually installed the Facebook SDK (not Unity Package)
iosPlist.SetString("FacebookAppID", "123412341234");
iosPlist.SetString("FacebookDisplayName", "fbAppName");
iosPlist.SetString("FacebookClientToken", "token_1234");
iosPlist.SetBoolean("FacebookAutoLogAppEventsEnabled", true);
iosPlist.SetBoolean("FacebookAdvertiserIDCollectionEnabled", true);
}
#endregion
#region IOSAppIcon
using (IOSAppIcon iosAppIcon = new IOSAppIcon(target, path)) {
// set market icon as Unity will not process it
iosAppIcon.SetMarketIcon1024("Assets/Game/icon-1024x1024.png");
}
#endregion
}
}
}
#endif
IPostProcess
Get a callback when building a scene or play a scene. Useful when you have some debug tools and want to clean it before playing or building.
[!WARNING] For building, the callback is called on build process (so the change happens already before
Awake). However, in editor runtime (not built runtime), this happens AFTERAwake
Set Up
Add macro SAINTSBUILD_POST_PROCESS. You can do it by Tools/SaintsBuild/Enable Scene Post Process
Or, put this in any of your editor script:
using UnityEditor.Callbacks;
[PostProcessScene]
public static void OnPostProcess()
{
Debug.Log("call SaintsBuild OnPostProcess");
SaintsBuild.Editor.Callbacks.OnPostProcess();
}
public class PreprocessBuildWithReport: IPreprocessBuildWithReport
{
public int callbackOrder => 0;
public void OnPreprocessBuild(BuildReport report)
{
SaintsBuild.Editor.Callbacks.OnPreprocessBuildCallback();
}
}
public class PostprocessBuildWithReport: IPostprocessBuildWithReport
{
public int callbackOrder => 0;
public void OnPostprocessBuild(BuildReport report)
{
SaintsBuild.Editor.Callbacks.OnPostprocessBuildCallback();
}
}
Usage
Clean Up:
public class CleanSlider: MonoBehaviour, IPostProcess
{
public Slider slider;
#if UNITY_EDITOR // don't forget this
public bool EditorOnPostProcess(PostProcessInfo postProcessInfo)
{
slider.value = 0;
return false; // no need to backup
}
#endif
}
Advanced Usage:
public class TextContainer : MonoBehaviour, IPostProcess
{
public GameObject prefab;
public Transform container;
private void Awake()
{
#if UNITY_EDITOR
// in build, the clean process will happen before build
// but in play mode, we need to call it manually
CleanUpExample();
#endif
// other works
foreach (int index in Enumerable.Range(0, 5))
{
GameObject example = Instantiate(prefab, container);
example.GetComponent<Text>().text = $"Runtime Awake created {index}";
}
}
#if UNITY_EDITOR
public bool EditorOnPostProcess(PostProcessInfo postProcessInfo)
{
if (postProcessInfo.IsBuilding) // in building process, Unity will call this function and apply changes to build result
{
CleanUpExample();
}
else // in play mode, unity will call Awake first, then call this function. Changes will be revoked after exiting play mode
{
// deal conflict with Awake
}
return true; // need backup/restore as this will modify the asset itself.
}
private void CleanUpExample()
{
foreach (Transform eachExample in container.Cast<Transform>().ToArray())
{
Debug.Log(eachExample.gameObject.name);
DestroyImmediate(eachExample.gameObject, true); // allow destroy in prefab
}
}
#endif
}
Using on a prefab which can also be in scene:
public class SubContent : MonoBehaviour, IPostProcess
{
#if UNITY_EDITOR
Related Skills
node-connect
347.0kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
107.8kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
347.0kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
347.0kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
