Short resonse:
I now bought a mac mini 2011 with High Sierra 10.13.6 and installed Xcode 10.1. I'm now able to run the wrapper and wrap my apps. Thanks you for your efforts.
I have at least one question about it:
The wrapped app could receive app-specific configuration from the server. It should be possible with implementing the followong callback methods on the class that implements the UIApplicationDelegate protocol:
objective-C:
-(NSString *)appConnectConfigIs
NSDictionary *)config;
-(NSString *)appConnectConfigChangedTo
NSDictionary *)config;
Swift:
@objc func appConnectConfigIs(_ config: [String : Any]) -> String?
@objc func appConnectConfigChangedTo(_ config: [String : Any]) -> String?
The documentation says: "The parameter is an NSDictionary object which contains the current key-value pairs for the app-specific configuration."
How could it be possible to implement this in an app?