UnityPlugin-AVProVideo icon indicating copy to clipboard operation
UnityPlugin-AVProVideo copied to clipboard

[iOS] No Info.plist found in AVProVideo.xcframework

Open mpn7 opened this issue 3 weeks ago • 3 comments

Unity version

6000.2.15

Unity editor platform

macOS

AVPro Video edition

Core

AVPro Video version

3.3.4

Device hardware

Which iOS version are you using?

Texture format

BGRA

Audio output

System Direct

Any other Media Player component configuration required to reproduce the issue.

No response

Which output component(s) are you using?

No response

Any other component configuration required to reproduce the issue.

No response

The issue

I'm trying to build the application in XCode and I'm running into this issue. I've tried to re-import the package but still the info.plist isn't there.

Before building if I go to the folder /Assets/AVProVideo/Runtime/Plugins/iOS/AVProVideo.xcframework it isn't there as well, just 3 folders: _CodeSignature, ios-arm64, ios-arm64_x86_64-simulator

Media information

No response

Log output

There is no Info.plist found at '/Frameworks/AVProVideo/Runtime/Plugins/iOS/AVProVideo.xcframework/Info.plist'.

mpn7 avatar Dec 05 '25 10:12 mpn7

I've just installed AVPro Video 3.3.4 Core via the Unity package manager into a fresh project and the Info.plist file is present. I'm not sure why it's gone missing for you but I would suggest removing the AVProVideo folder from your project and reimporting.

MorrisRH avatar Dec 05 '25 15:12 MorrisRH

@MorrisRH I've done that so many times. I'm installing the AVPro Video Core Mobile edition I've tried deleting all the files even mentioning AV Pro, I've tried removing the library, updating unity. I don't know what else to try.

mpn7 avatar Dec 05 '25 16:12 mpn7

If you create a fresh project and install it does the same thing happen? If so, could be the package manager cache has been corrupted some how... you could try this.

Here's the Info.plist file:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>AvailableLibraries</key>
	<array>
		<dict>
			<key>BinaryPath</key>
			<string>libAVProVideo.a</string>
			<key>LibraryIdentifier</key>
			<string>ios-arm64_x86_64-simulator</string>
			<key>LibraryPath</key>
			<string>libAVProVideo.a</string>
			<key>SupportedArchitectures</key>
			<array>
				<string>arm64</string>
				<string>x86_64</string>
			</array>
			<key>SupportedPlatform</key>
			<string>ios</string>
			<key>SupportedPlatformVariant</key>
			<string>simulator</string>
		</dict>
		<dict>
			<key>BinaryPath</key>
			<string>libAVProVideo.a</string>
			<key>LibraryIdentifier</key>
			<string>ios-arm64</string>
			<key>LibraryPath</key>
			<string>libAVProVideo.a</string>
			<key>SupportedArchitectures</key>
			<array>
				<string>arm64</string>
			</array>
			<key>SupportedPlatform</key>
			<string>ios</string>
		</dict>
	</array>
	<key>CFBundlePackageType</key>
	<string>XFWK</string>
	<key>XCFrameworkFormatVersion</key>
	<string>1.0</string>
</dict>
</plist>

MorrisRH avatar Dec 05 '25 17:12 MorrisRH