├── NotificationCrash.xcodeproj └── project.pbxproj ├── NotificationCrash ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewController.swift └── README.md /NotificationCrash.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktakayama/NotificationCrash/HEAD/NotificationCrash.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NotificationCrash/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktakayama/NotificationCrash/HEAD/NotificationCrash/AppDelegate.swift -------------------------------------------------------------------------------- /NotificationCrash/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktakayama/NotificationCrash/HEAD/NotificationCrash/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /NotificationCrash/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktakayama/NotificationCrash/HEAD/NotificationCrash/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /NotificationCrash/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktakayama/NotificationCrash/HEAD/NotificationCrash/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /NotificationCrash/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktakayama/NotificationCrash/HEAD/NotificationCrash/Info.plist -------------------------------------------------------------------------------- /NotificationCrash/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktakayama/NotificationCrash/HEAD/NotificationCrash/ViewController.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktakayama/NotificationCrash/HEAD/README.md --------------------------------------------------------------------------------