- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的应用名为 Movies
。我正在使用 Splunk Mint(以前称为 BugSense)来捕获崩溃报告。我最近更新到他们新的 4.0 SDK。这是今天的崩溃报告,我不明白。我的代码中究竟在哪一行发生了崩溃?
崩溃是:NSInvalidArgumentException *** -[NSPlaceholderString initWithString:]: nil argument
您会想到第 4 行?但我不知道 URLBlackListManager
到底是什么。或者它是第 0 行,MKSKProduct
内部崩溃(多年来我一直使用该代码来简化应用内购买),但为什么它会说它来自 核心基础
?或者它是第 10 行,Movies
实际上是用我的代码调用的最后一行?
我不知道 SplunkNSURLConnectionSendSynchronousRequestReturningResponseError
是什么,他们的网站上没有任何信息。
我一直无法报告崩溃,但它在不同的设备上针对不同的人至少发生了 10 次。
我有点困惑...有人有什么想法吗?
0 CoreFoundation -[MKSKProduct verifyReceiptOnComplete:onError:] (in Movies) (MKSKProduct.m:196) + 868307
1 libobjc.A.dylib _mh_execute_header (in Movies) + 15567
2 CoreFoundation -[MKSKProduct verifyReceiptOnComplete:onError:] (in Movies) (MKSKProduct.m:190) + 868117
3 Foundation -[CollectionViewController collectionView:didSelectItemAtIndexPath:] (in Movies) (CollectionViewController.m:227) + 154361
4 Movies -[URLBlackListManager containsURL:] (in Movies) + 129
5 Movies SplunkNSURLConnectionSendSynchronousRequestReturningResponseError (in Movies) + 453
6 Foundation -[SettingsViewController tableView:didSelectRowAtIndexPath:] (in Movies) (SettingsViewController.m:278) + 292459
7 Foundation -[SettingsViewController tableView:didSelectRowAtIndexPath:] (in Movies) (SettingsViewController.m:270) + 292251
8 Foundation +[MKSKProduct connection:didFailWithError:] (in Movies) (MKSKProduct.m:299)
9 Movies -[iPhoneRSS initWithURL:andItemName:] (in Movies) (iPhoneRSS.m:39) + 871897
10 Movies -[CreateUsernameViewController submit:] (in Movies) (CreateUsernameViewController.m:123) + 572531
11 UIKit -[ImportViewController setUrlTextField:] (in Movies) (ImportViewController.m:34) + 262231
12 UIKit -[ImportViewController setInstructionsLabel:] (in Movies) (ImportViewController.m:32) + 262135
13 UIKit -[ImportViewController instructionsLabel] (in Movies) (ImportViewController.m:32) + 262097
14 UIKit __43-[CollectorsAdViewController openAppStore:]_block_invoke (in Movies) (CollectorsAdViewController.m:279) + 177975
15 UIKit -[ImportViewController ebaySearchWithCountry:andBarcode:] (in Movies) (ImportViewController.m:2464) + 260687
16 UIKit -[ImportViewController ebaySearchWithCountry:andBarcode:] (in Movies) (ImportViewController.m:2427) + 259873
17 UIKit -[ImportViewController importCollectorzData:] (in Movies) (ImportViewController.m:1488) + 239339
18 UIKit -[WishlistViewController tableView:commitEditingStyle:forRowAtIndexPath:] (in Movies) (WishlistViewController.m:1187) + 63725
19 UIKit -[WishlistViewController tableView:cellForRowAtIndexPath:] (in Movies) (WishlistViewController.m:929) + 57239
20 CoreFoundation -[MainViewController optionsTouched:] (in Movies) (MainViewController.m:687) + 651867
21 CoreFoundation -[MainViewController startActivityIndicator] (in Movies) (CGGeometry.h:294) + 649003
22 CoreFoundation -[MainViewController loadUp] (in Movies) (MainViewController.m:405) + 642847
23 CoreFoundation -[WishlistViewController themeSetup] (in Movies) (WishlistViewController.m:224) + 32527
24 CoreFoundation -[WishlistViewController loadDataOffline] (in Movies) (WishlistViewController.m:214) + 31987
25 GraphicsServices -[WishlistViewController loadUp] (in Movies) (WishlistViewController.m:412) + 38499
26 UIKit -[EditImageViewController viewWillAppear:] (in Movies) (EditImageViewController.m:102) + 450925
27 Movies main (in Movies) (main.m:16) + 891191
28 libdyld.dylib _mh_execute_header (in Movies) + 6839
这里是堆栈跟踪中第 0 行的 verifyReceiptOnComplete
代码...如果您在这里看到任何可能导致 nil NSString 崩溃的方法,请告诉我:
- (void) verifyReceiptOnComplete:(void (^)(void)) completionBlock
onError:(void (^)(NSError*)) errorBlock
{
self.onReceiptVerificationSucceeded = completionBlock;
self.onReceiptVerificationFailed = errorBlock;
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"%@/%@", OWN_SERVER, @"verifyProduct.php"]];
NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url
cachePolicy:NSURLRequestReloadIgnoringCacheData
timeoutInterval:60];
[theRequest setHTTPMethod:@"POST"];
[theRequest setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
NSString *receiptDataString = [self.receipt base64EncodedString];
NSString *postData = [NSString stringWithFormat:@"receiptdata=%@", receiptDataString];
NSString *length = [NSString stringWithFormat:@"%d", [postData length]];
[theRequest setValue:length forHTTPHeaderField:@"Content-Length"];
[theRequest setHTTPBody:[postData dataUsingEncoding:NSASCIIStringEncoding]];
self.theConnection = [NSURLConnection connectionWithRequest:theRequest delegate:self];
[self.theConnection start];
}
最佳答案
我自己偶然发现了这个错误,这是我发现的:
如果您使用 Cocoapods 安装 Splunk Mint Express,您会得到两个不同的 Pod:
$> pod search Splunk
-> SplunkMint (4.0.4)
Usage, performance and crash monitoring for your iOS apps
pod 'SplunkMint', '~> 4.0.4'
- Homepage: https://mint.splunk.com/
- Source: download.splunk.com/misc/mint/SplunkMint-iOS.framework.zip
- Versions: 4.0.4, 4.0.3, 4.0.2, 4.0.1 [master repo]
-> SplunkMint-iOS (4.0.21)
Usage, performance and crash monitoring for your iOS apps
pod 'SplunkMint-iOS', '~> 4.0.21'
- Homepage: https://mint.splunk.com/
- Source: download.splunk.com/misc/mint/SplunkMint-iOS.framework.4.0.21.zip
- Versions: 4.0.21, 4.0.17, 4.0.1 [master repo]
当我使用 SplunkMint
时,我遇到了同样的崩溃,但切换到 SplunkMint-iOS
后修复了它。我不知道这两个 Pod 之间有什么区别(我什至不必更改初始化 Mint
的代码)但我向 Splunk 提交了一个错误让他们知道。
如果我发现其他东西,我会编辑我的帖子,
希望对你有帮助
关于ios - 我不明白来自 BugSense/Mint 的这个 iOS 堆栈跟踪...我的代码实际上在哪里崩溃?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26163726/
我正在使用 BugSense,它工作得几乎完美,包括报告错误。问题是,每次应用程序启动时,它都会抛出一些异常(看起来应用程序将崩溃(黑屏),但事实并非如此......) 这是堆栈跟踪: 07-28 1
我刚刚在我的 android 应用程序中实现了 bugsense 3.2 库,然后才发布给客户端进行测试。我的应用程序处于测试阶段。为了测试崩溃报告,我特意在我的 Activity 中放置了一个崩溃代
我尝试在我的 Android 应用程序中实现 BugSense,但我无法看到我提交的自定义数据。我真的找不到问题出在哪里,因为我收到错误报告但没有自定义数据。我实现了 com.bugsense.tra
我最近在 android 市场上收到了我的一个应用程序的 NullPointerException 崩溃报告。我在测试时无法重现错误,所以我认为它可能是特定于设备的。为了解决这个问题,我在最新版本中加
我的应用偶尔会出现错误。 Flurry 向我展示了这个: class java.lang.RuntimeException Msg: Unable to resume activity {com.bl
根据 Bugsense 文档,我发现我需要在 Service onCreate 上添加此代码: BugSenseHandler.setup(context, "MY_API_KEY"); contex
我默认启用 BugSense,但我正在寻找一种在运行时禁用 BugSense 的简单方法,以防我的用户不希望发送错误报告。 希望有类似 acra.disable 的东西 preference 最佳答案
我最近启用了 BugSense在我的应用程序中尝试帮助收集崩溃报告。我看到很多崩溃看起来像是在我的应用程序启动时立即发生的(我无法在我自己的任何设备上复制)。问题是我从 BugSense 获得的堆栈跟
我试图让 bugsense 在我的 iOS 应用程序中工作,但在初始化 BugSenseCrashController 时应用程序因 EXC_BAD_ACCESS 而崩溃: BugSenseCra
我在 Android 中使用 Bugsense 作为 ACRA 的后端。 Bugsense 很好,报告演示也很好。 我面临的问题是它每月只允许 500 个免费报告。 我正在寻找可以在我的服务器上托管并
BugSense 为我抛出一个小异常。它有效(每次!?),当我的应用程序在我手中崩溃时,我仍然会收到电子邮件通知。我想知道以防万一,此错误消息是什么? 有人知道吗? 异常(exception): W
我可以找到它的旧实现 #import 和 [BugSenseController sharedControllerWithBugSenseAPIKey:@"123456" userDictionar
我正在尝试创建一个简单的 Robolectric 单元测试(使用 Gradle 在某种程度上遵循这里的示例 http://www.peterfriese.de/android-testing-with
我开始通过 BugSense 从我的 iOS 应用程序收到崩溃报告.我在我的应用程序中包含了调试符号,并获取了有关错误的信息,例如。 “* -[NSMutableArray objectAtIndex
我的应用名为 Movies。我正在使用 Splunk Mint(以前称为 BugSense)来捕获崩溃报告。我最近更新到他们新的 4.0 SDK。这是今天的崩溃报告,我不明白。我的代码中究竟在哪一行发
您好,您需要使用 python 和 api(apitoken/apikey) 自动上传 Bugsense proguard 映射文件。我正在尝试使用来自(“github.com/PanosJee/50
我的应用有 3 个 Activity A、B 和 C。从 A(“家”)我可以开始 B,从 B 我可以开始 C。 我是否必须仅在 A 或 B 和 C 中调用 BugSenseHandler.setup(
我正在为 iOS 设备开发一个 phonegap 应用程序。我还为 iOS 集成了 bugsense。 我正在使用 javascript 中的 window.onError 来捕获错误,然后使用 We
我有一个基于 webview 的 android 应用程序,我想获取崩溃报告并将其存储到文本文件中,但我无法在任何地方找到任何编程 native 解决方案。我已阅读this文章,但我无法使用它。我没有
我是一名优秀的程序员,十分优秀!