Open sts-ryan-holton opened 5 years ago
Because some of the keynames in ios12.2 are private you need to change two things。 change function
(NSString) wkProperty { NSString str = @"YWx3YXlzUnVuc0F0Rm9yZWdyb3VuZFByaW9yaXR5"; NSData* data = [[NSData alloc] initWithBase64EncodedString:str options:0];
return [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]; }
Hi, I'm using Cordova v8.0.0, with iOS 12.2, iPhone X. I'm using Nuxt JS an have Vue Axios set up to perform GET requests every X number of minutes using a
setInterval
functionI'd like to be able to keep the
setInterval
function running even when the app isn't open, and even potentially closed as well.When I initialise this plugin, the code after it seems to just stop working and not do anything, e.g:
This code will do the first alert, but then anything after
enable()
just doesn't do anything.