Skip to content

Commit 134e5e7

Browse files
committed
Merge pull request #707 from ParsePlatform/remove-crash-reporting
Remove Crash Reporting references
2 parents 492bb3b + 3a5cb6c commit 134e5e7

File tree

4 files changed

+0
-20
lines changed

4 files changed

+0
-20
lines changed

ParseStarterProject/iOS/ParseStarterProject-Swift/ParseStarterProject-Swift.xcodeproj/project.pbxproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@
5252
81BA814C1A49DA1800E65899 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
5353
81BA816B1A49DB6800E65899 /* Bolts.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Bolts.framework; sourceTree = "<group>"; };
5454
81BA816C1A49DB6800E65899 /* Parse.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Parse.framework; sourceTree = "<group>"; };
55-
81BA816D1A49DB6800E65899 /* ParseCrashReporting.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = ParseCrashReporting.framework; sourceTree = "<group>"; };
5655
81BA816E1A49DB6800E65899 /* ParseFacebookUtils.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = ParseFacebookUtils.framework; sourceTree = "<group>"; };
5756
81BA81761A49E0D500E65899 /* libsqlite3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.dylib; path = usr/lib/libsqlite3.dylib; sourceTree = SDKROOT; };
5857
81BA81781A49E0DB00E65899 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
@@ -120,7 +119,6 @@
120119
children = (
121120
81BA816B1A49DB6800E65899 /* Bolts.framework */,
122121
81BA816C1A49DB6800E65899 /* Parse.framework */,
123-
81BA816D1A49DB6800E65899 /* ParseCrashReporting.framework */,
124122
81BA816E1A49DB6800E65899 /* ParseFacebookUtils.framework */,
125123
81BA81801A49E10C00E65899 /* ParseUI.framework */,
126124
81BA81751A49E0C500E65899 /* System Frameworks */,

ParseStarterProject/iOS/ParseStarterProject-Swift/ParseStarterProject/AppDelegate.swift

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ import Parse
1414
// If you want to use any of the UI components, uncomment this line
1515
// import ParseUI
1616

17-
// If you want to use Crash Reporting - uncomment this line
18-
// import ParseCrashReporting
19-
2017
@UIApplicationMain
2118
class AppDelegate: UIResponder, UIApplicationDelegate {
2219

@@ -32,9 +29,6 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
3229
Parse.enableLocalDatastore()
3330

3431
// ****************************************************************************
35-
// Uncomment this line if you want to enable Crash Reporting
36-
// ParseCrashReporting.enable()
37-
//
3832
// Uncomment and fill in with your Parse credentials:
3933
// Parse.setApplicationId("your_application_id", clientKey: "your_client_key")
4034
//

ParseStarterProject/iOS/ParseStarterProject/ParseStarterProject/ParseStarterProjectAppDelegate.m

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@
1515
// If you are using Facebook, uncomment this line
1616
// #import <ParseFacebookUtils/PFFacebookUtils.h>
1717

18-
// If you want to use Crash Reporting - uncomment this line
19-
// #import <ParseCrashReporting/ParseCrashReporting.h>
20-
2118
#import "ParseStarterProjectAppDelegate.h"
2219
#import "ParseStarterProjectViewController.h"
2320

@@ -32,9 +29,6 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
3229
[Parse enableLocalDatastore];
3330

3431
// ****************************************************************************
35-
// Uncomment this line if you want to enable Crash Reporting
36-
// [ParseCrashReporting enable];
37-
//
3832
// Uncomment and fill in with your Parse credentials:
3933
// [Parse setApplicationId:@"your_application_id" clientKey:@"your_client_key"];
4034
//

ParseStarterProject/watchOS/ParseStarterProject-Swift/ParseStarterProject/AppDelegate.swift

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ import Parse
1414
// If you want to use any of the UI components, uncomment this line
1515
// import ParseUI
1616

17-
// If you want to use Crash Reporting - uncomment this line
18-
// import ParseCrashReporting
19-
2017
@UIApplicationMain
2118
class AppDelegate: UIResponder, UIApplicationDelegate {
2219

@@ -32,9 +29,6 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
3229
Parse.enableLocalDatastore()
3330

3431
// ****************************************************************************
35-
// Uncomment this line if you want to enable Crash Reporting
36-
// ParseCrashReporting.enable()
37-
//
3832
// Uncomment and fill in with your Parse credentials:
3933
// Parse.setApplicationId("your_application_id", clientKey: "your_client_key")
4034
//

0 commit comments

Comments
 (0)