I'm getting the same error on my apps:
Resolve Package Graph
xcodebuild: error: Could not resolve package dependencies:
a resolved file is required when automatic dependency resolution is disabled and should be placed at /Volumes/workspace/repository/Opus One.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved
fatalError
I have the Lottie as a Swift Package, but the Xcode cloud docs say that it should be automatic since its public. So, I'm looking for any possible hints as to what to look for or how to debug this issue.
Thank you.
Post not yet marked as solved
Hello there.
The Developer Transition Kit was of great help, but now I want to return it but the contract doesn't say where to send it. It just says that you need to return it 30 days after some announcement that hasn't occurred. Just wondering if I could return it earlier ?
Post not yet marked as solved
Apple offers different prices for Family Sharing in Apple Music. $9.99 individual and $14.99 for family. Is there an option to set a different price for our family shared subscriptions ?
Big Sur added a new property *style*, that defaults to automatic. Even though I'm setting it to full width, I can still see a difference between my app running on Xcode 12.1 vs 12.2
When debugging the interface I can see that the edges contain the table row. Which means that the cell is not occupying the entire full width of the row.
Please let me know if there is a way to get a single cell view to expand the entire tableview width.
Since Big Sur application icons have a different style than the earlier OS's, I want to add a new icon for my app, but only for Big Sur. Is there a way to set an icon for MacOS 11 and the old icon for the earlier OS's ?
Thank you.
Can't seem to find any Xcode template for Mac Widgets in BigSur. Do you just add an iOS Widget target to the macOS app ?
Hi,My app is a pay to download app, and I'm being asked if its possible to allow free access to paid users from another app.The other app will be providing me with an api that will give access to users with passwords, so I was thinking of making another app with the same content with a user/password wall to give access.Does anyone know if this is allowed ?Thank you ,- Jose.
Post not yet marked as solved
Hi, On appstore connect there is a metric called subscription conversion that tells you how many convert from the free trail to the paid subscription. But I'm looking for a way to measure from the number of downloads, how many subscribed.Does anyone have info on this ?Thank you,- Jose.
Post not yet marked as solved
On Mojave multiple items cannot be added to the pasteboard becuase of this error. I have yet to find a solution to drag multiple items with a table view. Whats going on ?2018-10-09 17:52:57.527405-0500 FooApp[2688:80237] [General] There are 2 items on the pasteboard, but 1 drag images. There must be 1 draggingItem per pasteboardItem.2018-10-09 17:52:57.531824-0500 Opus One[2688:80237] [General] ( 0 CoreFoundation 0x00007fff485c043d __exceptionPreprocess + 256 1 libobjc.A.dylib 0x00007fff744d1720 objc_exception_throw + 48 2 CoreFoundation 0x00007fff485c026f +[NSException raise:format:] + 201 3 AppKit 0x00007fff45de642b -[NSDraggingSession(NSInternal) _initWithPasteboard:image:offset:source:] + 247 4 AppKit 0x00007fff45de5e43 -[NSCoreDragManager dragImage:fromWindow:at:offset:event:pasteboard:source:slideBack:] + 1919 5 AppKit 0x00007fff45de56b5 -[NSWindow(NSDrag) dragImage:at:offset:event:pasteboard:source:slideBack:] + 134 6 AppKit 0x00007fff4629ca75 -[NSTableView _doImageDragUsingRowsWithIndexes:event:pasteboard:source:slideBack:startRow:] + 656 7 AppKit 0x00007fff4629cf09 -[NSTableView __doImageDragUsingRowsWithIndexes:event:pasteboard:source:slideBack:startRow:] + 276 8 AppKit 0x00007fff4629dc9e -[NSTableView _performClassicDragOfIndexes:hitRow:event:] + 466 9 AppKit 0x00007fff45e14dac -[NSTableView _performDragFromMouseDown:] + 474 10 AppKit 0x00007fff45e130b0 -[NSTableView mouseDown:] + 798 11 FooApp 0x00000001000f8829 -[NSTableView mouseDown:] + 233 12 AppKit 0x00007fff45c97797 -[NSWindow(NSEventRouting) _handleMouseDownEvent:isDelayedEvent:] + 5668 13 AppKit 0x00007fff45bcb7cf -[NSWindow(NSEventRouting) _reallySendEvent:isDelayedEvent:] + 2319 14 AppKit 0x00007fff45bcac75 -[NSWindow(NSEventRouting) sendEvent:] + 481 15 AppKit 0x00007fff45a67f4c -[NSApplication(NSEvent) sendEvent:] + 336 16 AppKit 0x00007fff45a55795 -[NSApplication run] + 755 17 AppKit 0x00007fff45a44e97 NSApplicationMain + 780 18 FooApp 0x0000000100002452 main + 34 19 libdyld.dylib 0x00007fff7559f085 start + 1 20 ??? 0x0000000000000006 0x0 + 6)
Post not yet marked as solved
Anyone having problems with your Custom NSView's inside a NSScrollView? I have a NSScrollView with a custom NSView that uses its draw(rect:) function to do all the work.Before OSX 10.14, each time scrollview was marked with setNeedsDisplay, the documentView would also refresh. On OSX 10.14 I need to specifically mark the doucmentView to setNeedsDisplay too. Looks like its ignoring the NSScrollView.contentView.copiesOnScroll property.Does anyone have similar issues or point me to release notes? the NSAppKit release notes don't say anything about NSScrollView.