Search results for

missing package product

51,073 results found

Post

Replies

Boosts

Views

Activity

Reply to Prevent malicious software detection on signed library
The third-party program does seem to have library validation disabled: I recommend that you discuss this with the tool’s author. The only good reason to disable library validation is if the tool is loading plug-ins from other third-party developers, which seems unlikely. I see a lot of folks disable library validation because they think it’ll make their life easier but, in reality, it makes things harder. Specifically, the combination of disabling library validation and dangling load commands is the number one cause of mysterious Gatekeeper rejections. See Resolving Trusted Execution Problems for the details. So, unless this tool needs to disable library validation, I recommend that you re-enable it. That’s better for security and it helps with Gatekeeper. I thought about notarising, but as far as I understand you can only notarise Apps or Zip files. Am I missing something? Yes. As a general rule you should not notarise each code item separately. Rather, build all your code items into a complete product
Topic: Code Signing SubTopic: General Tags:
Oct ’22
CoreData in Swift Packages
I am having issues loading my model from a Swift Package with the following structure: | Package.swift | Sources | - | SamplePackage | - | - Core | - | - | - SamplePackageDataStack.swift | - | - | - DataModel.xcdatamodeld | - | - | - | - Model.xcdatamodel ( <- is this new? ) As mentioned, I am not required to list the xcdatamodeld as a resource in my Package manifest. When trying to load the model in the main app, I am getting CoreData: error: Failed to load model named DataModel Code: In my swift Package: public class SamplePackageDataStack: NSObject { public static let shared = SamplePackageDataStack() private override init() {} public lazy var persistentContainer: NSPersistentContainer = { let container = NSPersistentContainer(name: DataModel) container.loadPersistentStores(completionHandler: { (storeDescription, error) in if let error = error as NSError? { fatalError(Unresolved error (error), (error.userInfo)) } }) return container }() /// The managed object context associate
5
0
5.5k
Jun ’20
Reply to Invalid ToolChain
I had this error using the latest version of Xamarin. I usually sign the App in Xamarin and then use the Application loader. But got the error you reported. So I did this...1. Made the archive in Xamarin2. Opened Xcoder Organizer (When I tried to publish from here I got an error about the ITunesMetadata.plist)3. Show Package Contents on Archive4. Open Products, Applications, Show package Contents of the Application.5. delete the itunesMetadata.plist6. submit the app from the organizer.7. Sucess
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’15
Reply to Sign and Notarize Electron App
It’s hard to say what’s going on here because you’re using a third-party tool to sign your app. You can find my general advice on how to sign and package a Mac product in: Creating distribution-signed code for macOS Packaging Mac software for distribution I recommend that you compare that advice against what your third-party tooling is doing. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Dec ’24
schema.org "Offer", but not "Product" in Spotlight?
Hi,as metioned in slide 182 at Search in iOS 9 @WWDC (see http://devstreaming.apple.com/videos/wwdc/2015/709jcaer6su/709/709_introducing_search_apis.pdf )We see several schema.org schemes that will be interpreted by Spotlight. I am missing Product. There seem to be Offer only for online shops.Does anybody have an idea if Product would also work? Product seems to imply OfferRegards!
1
0
408
Jul ’15
Reply to Pasteboard control when Ctrl + v
I am also interested in using a potential Endpoint Security hook to monitor and block pastes to specific apps for a data loss prevention product. Is this something that would be possible to add so DLP products can stop doing more complicated and less effective monitoring (i.e global event taps and/or accessibility framework)?
Topic: Privacy & Security SubTopic: General Tags:
Feb ’25
Reply to Application is rejected because of Missing IAPs?
The thing I missed was that in addition to all the information on the In App Purchase section, you have to select the IAPs to attach on the product page (the page where you enter the description and select a binary). The IAPs have to be selected like you select the binary. Easy to miss and Apple isn’t good about explaining that In their rejection.
Topic: App & System Services SubTopic: StoreKit Tags:
Jan ’24
Path in Payload is missing from Bom
I'm trying to submit an App to the App Store and keep getting an error which says the following:This bundle is invalid - Package swiss.mandelkind.iBookmarks: Path iBookmarks.app/Contents/Resources/Python/site-packages/Crypto/Signature/.___init__.pyo in Payload is missing from Bom.This is due to a dependency I have to put into the bundle and I simply copy this with a cp -RP command using a Run Script Build Phase.I made sure there is no such hidden file before and after copying.That said, if I have a look at the created app archive, everything looks good, that is the .__init__.pyo does NOT exist.But as soon as I export the app for app store and trying to submit it, the above error is thrown.Any idea how to fix this? The only similar thing I was able to found in the net is the following - unfortunately without any hint or solution:ITMS-90000 :This bundle is invalid. Package org.xpra.pkg: Path Applications/Xpra?.app/Contents/Resources/lib/python2.7/numpy/f2py/tests/src/assumed_
0
0
622
Apr ’17
Error Missing required module 'RxCocoaRuntime' in xcframeworks
I am using RxCocoa in custom framework, so I am trying to inject dependencies with SPM and make that .xcframework. I made the .xcframework, but the following error keeps appearing. The process of creating and configuring the framework project and creating the xcframework was as follows. Development Environment CPU : Apple slicon (M1 PRO) MacOS : Ventura 13.1 Xcode : 14.1 Step Create framework project (sdk-sample) Set Build Active Architecture Only YES from NO Mach-O Type is Dynamic Library Write simple code using RxSwift, Rxcocoa Create .xcarchive and .xcframework xcodebuild archive -scheme sdk-sample -archivePath ./archive/sdk-sample.framework-iphoneos.xcarchive -sdk iphoneos SKIP_INSTALL=NO BUILD_LIBRARY_FOR_DISTRIBUTION=YES xcodebuild archive -scheme sdk-sample -archivePath ./archive/sdk-sample.framework-iphonesimulator-arm64.xcarchive -sdk iphonesimulator SKIP_INSTALL=NO BUILD_LIBRARY_FOR_DISTRIBUTION=YES xcodebuild -create-xcframework -framework './archive/sdk-sample.framework-iphoneos.xcarc
2
0
1.3k
Jun ’23