ti-firebase
ti-firebase copied to clipboard
After adding this module in Ti SDK 9.0.3 GA app is failing
Create Alloy project for ios, just run in simulator it worked fine. Now i added ti.firebase module and run I got below error.
In log we are getting this error
objc[67740]: Cannot form weak reference to instance (0x7f9ab8e0aac0) of class UIViewController. It is possible that this object was over-released, or is in the process of deallocation.
if we add "FirebaseScreenReportingEnabled" to tiapp.xml. App works fine but we are losing screen tracking.
:
<ios>
<enable-launch-screen-storyboard>true</enable-launch-screen-storyboard>
<use-app-thinning>true</use-app-thinning>
<plist>
<dict>
:
<key>UIStatusBarStyle</key>
<string>UIStatusBarStyleDefault</string>
<key>FirebaseScreenReportingEnabled</key>
<false/>
</dict>
</plist>
</ios>
:
Any suggestions here.