-
Notifications
You must be signed in to change notification settings - Fork 93
Open
Labels
Description
inline bool is_pwa(NSString * bundleIdentifier) {
NSArray * components = [bundleIdentifier componentsSeparatedByString: @"."];
bool pwa = components.count > 4 && [pwas containsObject: components[2]] && [components[3] isEqual: @"app"];
if (verbose && pwa) { NSLog(@"PWA: %@", components[2]); }
}
inline bool is_pwa(NSString * bundleIdentifier) {
NSArray * components = [bundleIdentifier componentsSeparatedByString: @"."];
bool pwa = components.count > 4 && [pwas containsObject: components[2]] && [components[3] isEqual: @"app"];
if (verbose && pwa) { NSLog(@"PWA: %@", components[2]); }
return pwa // add return code
}