Salvatore Randazzo

Results 2 comments of Salvatore Randazzo

Useful links for this discussion: https://reactnative.dev/docs/app-extensions https://developer.apple.com/app-clips/ https://developer.apple.com/documentation/app_clips Worth noting that App Clips must be less than 10mb in size - we should profile how small a barebones RN app...

One cause of this is a faulty comparison of NSAttributedString equality in `CCLabelTTF` https://github.com/cocos2d/cocos2d-objc/blob/v3.4/cocos2d/CCLabelTTF.m#L159 `if ( _attributedString.hash != attributedString.hash)` should be `if ( ![_attributedString isEqualToAttributedString: attributedString])` Patching this locally resolves...