I'm using Receigen for Apple receipt checking.
I have integrated a script on my build process that generates the appropriate files for my project:
# Receigen binary
RECEIGEN="/Applications/Receigen.app/Contents/MacOS/Receigen"
# Extract…
I'm using Receigen (http://receigen.etiemble.com/) to do receipt validation for one of my MacOS apps. This has worked beautifully for several years, but something has changed. I haven't made an update to this app for a year or so and submitted a…
In the main.swift file, we have a call to our receipt checking system (generated by Receigen). In Swift 2, main.swift read:
startup(Process.argc, UnsafeMutablePointer>(Process.unsafeArgv))
After upgrading to Swift 3, I've got as…
I just updated to Xcode 7.0 last night and it seems to have broken Receigen's generated code.
CFStringRef ReceiptValidation_str1 = @obfuscateCF@("");
Unexpected '@' in program
Receigen hasn't been updated since 2014, so this is almost certainly an…
The Receigen documentation, and other sources, suggest validating your app’s receipt as soon as possible, early in the main method even.
When I call the Receigen-generated code in main method, I get a execution-interruption when the app has no…
Two of my apps broke after what I assume was a change to Xcode (10.1 - 10B61) or iOS API. Both use Receigen in Obj-C mode and for some reason no longer recognize UIDevice.
Here are the imports auto-generated by Receigen:
What change to Xcode or…