This commit is contained in:
Sherin 2017-07-10 14:01:55 -07:00 коммит произвёл GitHub
Родитель 4c18b1452d
Коммит 035a2e6467
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -3,6 +3,7 @@ import UIKit
import MobileCenter
import MobileCenterAnalytics
import MobileCenterCrashes
import MobileCenterPush
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
@ -13,7 +14,8 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
// Override point for customization after application launch.
MSMobileCenter.start("YourAppSecret", withServices:[
MSAnalytics.self,
MSCrashes.self
MSCrashes.self,
MSPush.self
])
return true
}