Posts

Post not yet marked as solved
0 Replies
254 Views
I'm working on an iPad only app that has a UIPageViewController. One of the pages is supposed to show an mp4 video using an AVPlayerViewController as the page view controller. When the video is initially displayed there is a triangle in a circle icon in the center of the screen. When it is tapped the video starts playing . So far so good. Then the standard set of video controls appears - and then disappears in 2 seconds. Tapping on the video view brings them back - for another two seconds. Is there any way to set the timeout or some other trick that will keep them around for the normal period of time?
Posted
by slweiss.
Last updated
.
Post marked as solved
2 Replies
319 Views
I'm trying to notarize an existing color picker pane. Color picker panes (additions to the system colorpicker) are bundles with a .colorPicker extension and a structure similar to a .app bundle.1.) I signed the colorPicker bundle with:codesign -f -s "Developer ID Application: MyCompany, LLC " /Users/ralph/MyColorPicker.colorPicker --timestamp --deep --options runtimenote the --timestamp2.) I then used DropDMG to wrap the .colorPicker bundle in a dmg and then signed the dmgcodesign -f -s "Developer ID Application: MyCompany, LLC " /Users/ralph/MyColorPicker.colorPicker.dmg --timestamp --deep --options runtime3.) I then submitted the dmg to the notarization service with:xcrun altool --notarize-app -f /Users/ralph/MyColorPicker.colorPicker.dmg --primary-bundle-id com.mycompany.MyColorPicker -u AppleID -p AppSpecificPasswordIt loaded without error, but then the dread email...Your Mac software was not notarizedAfter going throughthe conniptions to get the ridiculously long URL for the log file, this is what it thinks is wrong{ "severity": "error", "code": null, "path": "MyColorPicker.colorPicker.dmg/MyColorPicker.colorPicker/Contents/Resources/EWSMacCompress.tar.gz/EWSMacCompress.tar/EWSMac.framework/Versions/A/EWSMac67108868", "message": "The binary is not signed.", "docUrl": null, "architecture": "x86_64h"},{ "severity": "error", "code": null, "path": "MyColorPicker.colorPicker.dmg/MyColorPicker.colorPicker/Contents/Resources/EWSMacCompress.tar.gz/EWSMacCompress.tar/EWSMac.framework/Versions/A/EWSMac67108868", "message": "The signature does not include a secure timestamp.", "docUrl": null, "architecture": "x86_64h" }??? I thought I signed it and with the --timestamp option. Investigating:codesign -vvv --deep --strict /Users/ralph/MyColorPicker.colorPicker.dmgresults in:/Users/ralph/MyColorPicker.colorPicker.dmg: valid on disk/Users/ralph/MyColorPicker.colorPicker.dmg: satisfies its Designated Requirementcodesign -dvv /Users/ralph/MyColorPicker.colorPicker.dmgresults in:Identifier=MyColorPicker.colorPickerFormat=disk imageCodeDirectory v=20200 size=319 flags=0x10000(runtime) hashes=1+6 location=embeddedSignature size=8939Authority=Developer ID Application: MyCompany, LLC (XXXXXXXXXX)Authority=Developer ID Certification AuthorityAuthority=Apple Root CATimestamp=Apr 16, 2020 at 10:06:14 AMInfo.plist=not boundTeamIdentifier=XXXXXXXXXXSealed Resources=noneInternal requirements count=1 size=192--------------------------------Any insights greatly appreciated. This is driving me nuts.
Posted
by slweiss.
Last updated
.