Manifest
The app manifest contains information about your app that is required by the platform. This file is automatically generated by the Immerse SDK and added to the zipped build output. Any upload attempt to the platform without this file will be immediately rejected.
During development, for your developer session, the contents of the manifest is provided to the platform each time you initiate a project update.
It is possible to generate a zip containing only your app manifest. This can be done via the Unity editor menu ‘File > Build (Manifest Only)’. This is commonly used for Android builds, where the apk is not distributed by the Immerse platform.
Generating the zipped manifest can also be done via an editor script. See below
using ImmerseSDKEditor.Platform.Project.Manifest;
public async void BuildExample()
{
const string outputPath = "manifest-only.zip";
await ManifestBuilder.BuildToZip(outputPath);
}