In the app I\'m developing on Android, I keep getting a Fatal Signal 11 error.
I think it\'s something to do with the way that I\'m accessing the memory but I can\'t
i had this problem when i was making a cocos2d-x app on android. the problem was that my layer was a CCLayer:
CCLayer::init()
but in the header file i had:
class HelloWorld : public cocos2d::CCLayerColor
i changed CCLayerColor to CCLayer and my app worked