Last active
December 30, 2015 05:09
-
-
Save ajones/7781192 to your computer and use it in GitHub Desktop.
Hook to capture unity launch with beacon region
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (&UIApplicationLaunchOptionsLocationKey != nil) { | |
bool launchedFromCLEvent = [launchOptions objectForKey:UIApplicationLaunchOptionsLocationKey]; | |
if (launchedFromCLEvent){ | |
[ProxKitLink beaconDetectedWhileAppWasDead]; | |
return YES; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment