Hey guys, I’m trying to integrate HockeyApp plugin to get crash reports in my Android app.
- I’ve added the plugin to my build.settings file
- I’ve made sure showRuntimeErrors is true
- I’ve called require() and init() on the plugin, per the docs, near the top of my main.lua file, using the appId from the hockeyapp.net dashboard
- I’ve added some code that causes a crash (foo = 5 + nil) into the touch handler for a button on the game’s main menu (the first scene loaded by main.lua)
- I’ve built for device and copied to my Samsung Galaxy SIII running Android 4.4.2 via USB
But when I trigger the crash, all I see is the standard runtime error dialog, with a code pointer to the spot of the crash (I’m not stripping debug symbols). No option to submit a crash report or anything like that. If I hit the back button, the dialog disappears and is replaced with a standard Android crash message ("<YourGame> has unexpectedly stopped") with an “OK” button, but no “Report” button. What am I missing? Thanks!