Skip to content

Commit 5d748e0

Browse files
authored
Documentation Updates (#194)
- Updated links to documentation to point at https://developers.intercom.com
1 parent c8264b0 commit 5d748e0

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

Examples/Sample-ObjC/Sample-ObjC/ITCAppDelegate.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
3535

3636
- (void)applicationDidBecomeActive:(UIApplication *)application {
3737
//Register for push notifications
38-
//For more info, see: http://docs.intercom.io/Install-on-your-mobile-product/enabling-push-notifications-with-intercom-for-ios
38+
//For more info, see: https://developers.intercom.com/v2.0/docs/ios-push-notifications
3939
[application registerUserNotificationSettings:[UIUserNotificationSettings
4040
settingsForTypes:(UIUserNotificationTypeBadge
4141
| UIUserNotificationTypeSound

Examples/Sample-Swift/Sample-Swift/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
3535

3636
func applicationDidBecomeActive(_ application: UIApplication) {
3737
//Register for push notifications
38-
//For more info, see: http://docs.intercom.io/Install-on-your-mobile-product/enabling-push-notifications-with-intercom-for-ios
38+
//For more info, see: https://developers.intercom.com/v2.0/docs/ios-push-notifications
3939
let settings = UIUserNotificationSettings(types: [.badge, .sound, .alert], categories: nil)
4040
application.registerUserNotificationSettings(settings)
4141
application.registerForRemoteNotifications()

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,9 @@ There is an example app provided [here](https://github.com/intercom/intercom-ios
4040

4141
##Setup and Configuration
4242

43-
* Our [installation guide](https://docs.intercom.io/install-on-your-product-or-site/quick-install/install-intercom-on-your-ios-app) contains full setup and initialisation instructions.
44-
* Read ["Configuring Intercom for iOS"](https://docs.intercom.io/configure-intercom-for-your-product-or-site/configure-intercom-for-mobile/configuring-intercom-for-ios).
43+
* Our [installation guide](https://developers.intercom.com/v2.0/docs/ios-installation) contains full setup and initialisation instructions.
44+
* Read ["Configuring Intercom for iOS"](https://developers.intercom.com/v2.0/docs/ios-configuration).
45+
* Read our guide on [Push Notifications](https://developers.intercom.com/v2.0/docs/ios-push-notifications).
4546
* Please contact us on [Intercom](https://intercom.io) with any questions you may have, we're only a message away!
4647

4748
## Cordova/Phonegap Support
@@ -53,7 +54,7 @@ Upgrading to the latest version of the iOS SDK is easy! 😉 Checkout out our [
5354

5455
## What about events, push notifications, company and user data?
5556

56-
Intercom for iOS has support for all these things. For full details please read our [documentation](http://docs.intercom.io/Install-on-your-mobile-product/configuring-intercom-for-ios).
57+
Intercom for iOS has support for all these things. For full details please read our [documentation](https://developers.intercom.com/v2.0/docs/ios-configuration).
5758

5859
## Xcode Documentation
5960

0 commit comments

Comments
 (0)