Search results for

missing package product

51,806 results found

Post

Replies

Boosts

Views

Activity

Building a Package installer/downloader
Hi Everyone,I'm not sure if i'm in the right section here.. 🙂I'm looking for a method to create a Package installer/downloader.Let me explain it.I would like to create a package installer where people will have choice to tick/untick the software that they want to download or not. (If it's possible in package installer)I have already try this software :- Platypus- Iceberg- Packagesbut i can't find the option to add option to download a file from url.I think of creating a basic package installer which load an automator script to download specific files but didn't succeed.Thanks a lot for your help to everyoneMichael
0
0
320
Mar ’17
Missing Entitlement. The bundle ... is missing entitlement 'com.apple.developer.networking.networkextension'."
Hello everyone, I'm encountering an issue while trying to publish an app on TestFlight. The app in question is Home Assistant, which I've compiled from the source. I am able to compile and install the app on my device without any problems. My company's developer account is properly configured, and I have set Xcode to automatically manage the provisioning profile. The archive is also created successfully, but when I attempt to upload it to Apple Store Connect for testing via TestFlight, I receive the following error: ERROR: [ContentDelivery.Uploader] Asset validation failed (90525) Missing Entitlement. The bundle 'Home Assistant.app/PlugIns/HomeAssistant-Extensions-PushProvider.appex' is missing entitlement 'com.apple.developer.networking.networkextension'. (ID: ceac6dcc-9c76-412e-8ea7-f2d2845f8013) I've made several attempts to resolve this issue to no avail. For instance, if I add the missing capability manually, then I am informed that the provisioning profile is incorrect. Howeve
8
0
3k
Jan ’24
String catalog and local package
Hello Apple community ! I'm facing an issue regarding xcstrings in a local package in my project. It's an iOS application with a local package containing multiple targets. The Localizable.xcstrings is located in the app target and contains keys for the app and targets of the local package (Views in the targets look for keys in the main bundle) My issue is that auto detection/extraction seems to work only for keys used inside the app bundle. It doesn't look in the package. However, if I add a Localizable.xcstrings inside a package target, it gets populated. Is this normal behaviour & is there any way to make extraction put the keys in the main bundle xcstrings instead ? I feel like it should be normal behaviour if no xcstrings is found in the package My fallback would be to set all keys in manual extraction state but it's not ideal ;) Thanks in advance for the great work Eric
1
0
887
Sep ’24
Invalid Products
We've started having issues a few days ago with StoreKit returning us a list of InvalidProducts when using the sandbox.I've gone through the classic list with no luck...http://blog.gamedonia.com/solve-invalid-product-ids#12We haven't touched that code at all for months, and even when deploying my latest working release build, it returns a list of invalid product ids.Any ideas?Anyone else with the same issue?
9
0
1.5k
Oct ’15
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
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 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
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.6k
Jun ’20
Swift Packages with User Certificate
Hi, is it possible to add a user certificate when connecting to a remote swift package? A cannot download the package when accessing repositories which require a user certificate. Safari allows you to specify a pfx certificate from your keychain: Adding a remote account in Xcode settings also fails when a user certificate is required: Is there an option to specify the user certificate in your keychain?
0
0
389
Jul ’21
Requesting products
Hi,Is it safe to request the products immediately when the app starts?It seems like you ought to be able to do this so you can have a product list ready as soon as the user hits a paywall.However, on my test phone, which isn't logged in to the app store, I get a password prompt immediately when the app starts. This is troubling. Obviously I don't want a real user to get a password prompt just because they ran my app.What's the best practice here?
1
0
292
Jul ’17