66 lines
1.9 KiB
C#
66 lines
1.9 KiB
C#
using System.IO;
|
|
using UnityEditor;
|
|
using UnityEngine;
|
|
#if UNITY_IOS
|
|
using UnityEditor.Callbacks;
|
|
using UnityEditor.iOS.Xcode;
|
|
#endif
|
|
|
|
public class NCPostProcessBuild
|
|
{
|
|
private const bool ENABLED = true;
|
|
|
|
private const string CAMERA_USAGE_DESCRIPTION = "Capture media with camera";
|
|
private const string MICROPHONE_USAGE_DESCRIPTION = "Capture microphone input in videos";
|
|
|
|
[InitializeOnLoadMethod]
|
|
public static void ValidatePlugin()
|
|
{
|
|
string jarPath = "Assets/Plugins/NativeCamera/Android/NativeCamera.jar";
|
|
if( File.Exists( jarPath ) )
|
|
{
|
|
Debug.Log( "Deleting obsolete " + jarPath );
|
|
AssetDatabase.DeleteAsset( jarPath );
|
|
}
|
|
}
|
|
|
|
#if UNITY_IOS
|
|
#pragma warning disable 0162
|
|
[PostProcessBuild]
|
|
public static void OnPostprocessBuild( BuildTarget target, string buildPath )
|
|
{
|
|
if( !ENABLED )
|
|
return;
|
|
|
|
if( target == BuildTarget.iOS )
|
|
{
|
|
string pbxProjectPath = PBXProject.GetPBXProjectPath( buildPath );
|
|
string plistPath = Path.Combine( buildPath, "Info.plist" );
|
|
|
|
PBXProject pbxProject = new PBXProject();
|
|
pbxProject.ReadFromFile( pbxProjectPath );
|
|
|
|
#if UNITY_2019_3_OR_NEWER
|
|
string targetGUID = pbxProject.GetUnityFrameworkTargetGuid();
|
|
#else
|
|
string targetGUID = pbxProject.TargetGuidByName( PBXProject.GetUnityTargetName() );
|
|
#endif
|
|
|
|
pbxProject.AddBuildProperty( targetGUID, "OTHER_LDFLAGS", "-framework MobileCoreServices" );
|
|
pbxProject.AddBuildProperty( targetGUID, "OTHER_LDFLAGS", "-framework ImageIO" );
|
|
|
|
File.WriteAllText( pbxProjectPath, pbxProject.WriteToString() );
|
|
|
|
PlistDocument plist = new PlistDocument();
|
|
plist.ReadFromString( File.ReadAllText( plistPath ) );
|
|
|
|
PlistElementDict rootDict = plist.root;
|
|
rootDict.SetString( "NSCameraUsageDescription", CAMERA_USAGE_DESCRIPTION );
|
|
rootDict.SetString( "NSMicrophoneUsageDescription", MICROPHONE_USAGE_DESCRIPTION );
|
|
|
|
File.WriteAllText( plistPath, plist.WriteToString() );
|
|
}
|
|
}
|
|
#pragma warning restore 0162
|
|
#endif
|
|
} |