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
<!doctype html> | |
<html class="no-js" lang="en"> | |
<head> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<meta name="apple-mobile-web-app-capable" content="yes"> | |
<meta name="apple-mobile-web-app-status-bar-style" content="black"> | |
<meta name="viewport" content="minimum-scale=1, maximum-scale=1, width=device-width"> | |
<title> ***Your support page title here*** </title> | |
<meta name="description" content=" ***Your support page description here*** "> |
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
[[Helpshift sharedInstance] showFAQs:self withOptions:@{@"showReportIssue":@"YES"}]; | |
[[Helpshift sharedInstance] showFAQs:self withOptions:@{@"showReportIssue":@"YES",@"showConvOnReportIssue":@"YES"}]; |
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
[[Helpshift sharedInstance] reportIssue:self withOptions:@{@"showConvOnReportIssue":@"YES"}]; |
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
[[Helpshift sharedInstance] showSupport:self withOptions:@{@"showConvOnReportIssue":@"YES"}]; |
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
[Helpshift metadataWithBlock:^(void){ | |
return [NSDictionary dictionaryWithObjectsAndKeys: | |
@"xyz", @"name", | |
@"[email protected]", @"email", | |
gameObject.level, @"level", | |
gameObject.score, @"score", | |
nil]; | |
}]; |
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
- (void) notificationCountAsyncReceived:(NSInteger)count { | |
dispatch_async(dispatch_get_main_queue(), ^{ | |
[yourView setTextLabel:[NSString stringWithFormat:@"%d",count]; | |
}); | |
} |
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
public class GCMIntentReceiver extends BroadcastReceiver { | |
@Override | |
public void onReceive(Context context, Intent intent) { | |
} | |
} |
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
String action = intent.getAction(); | |
if (action.equals(PushManager.ACTION_REGISTRATION_FINISHED)) { | |
hs.setDeviceToken(UAirship.shared().getApplicationContext(), | |
PushManager.shared().getAPID()); | |
} |
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
hs.getNotificationCount(countHandler, failHandler); |
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
String action = intent.getAction(); | |
if (action.equals(PushManager.ACTION_REGISTRATION_FINISHED)) { | |
hs.setDeviceToken(UAirship.shared().getApplicationContext(),PushManager.shared().getAPID()); | |
} |
NewerOlder