Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// SPDX-FileCopyrightText: Copyright 2023 Holo Interactive <dev@holoi.com>
//
// SPDX-FileContributor: Yuchen Zhang <yuchen@holoi.com>
//
// SPDX-License-Identifier: MIT

using System.IO;
using UnityEditor;
using UnityEditor.Callbacks;
Expand All @@ -18,7 +24,6 @@ public static void OnPostProcessBuild(BuildTarget buildTarget, string buildPath)
plist.ReadFromFile(plistPath);
PlistElementDict rootDict = plist.root;

// For MPC
rootDict.SetString("NSLocalNetworkUsageDescription", "For connecting to nearby devices");
PlistElementArray array = rootDict.CreateArray("NSBonjourServices");
array.AddString("_netcode-mpc._tcp");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) Holo Interactive
Copyright (c) 2023 Holo Interactive

Copyright (c) 2021 Unity Technologies

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// SPDX-FileCopyrightText: Copyright 2023 Holo Interactive <dev@holoi.com>
//
// SPDX-FileContributor: Yuchen Zhang <yuchen@holoi.com>
//
// SPDX-License-Identifier: MIT

using System;
using System.Runtime.InteropServices;
using System.Collections.Generic;
Expand Down