3

My first version of the app was working well both when live as well as in sandbox..now the second version is crashing after downloading from Appstore. The second version worked well in sandbox mode for both development and ad-hoc. The applicaiton went live and now it's crashing

worked well when it was in Sandbox

swiftBoy
  • 35,607
  • 26
  • 136
  • 135
  • The crash report says its a EXC_CRASH (SIGABRT) triggered at thread 7 - Dispatch queue: NSOperationQueue 0x17023a060 :: NSOperation 0x174248bb0 (QOS: LEGACY) Thread 7 crashed with ARM Thread State (64-bit) – Hrishikesh Menon Aug 01 '16 at 14:00

1 Answers1

4

Issue might be with the receipt handling code,Please handle the null/empty array/dictionary part correctly ,You might be receiving receipts details as null or empty Array/dictionary in some cases. Check it

  • Yea you said it bro, by checking if the response had any objects did the trick.. reponseArray>0 did it – Hrishikesh Menon Aug 02 '16 at 09:52
  • Hello - I am having the same issue. When you say check the array response if greater than > 0... where in the response do I check this? – BX69 Apr 26 '18 at 18:57