chrisribe / ti-firebase

Appcelerator / Titanium module project to build and use the google firebase SDK
Other
33 stars 14 forks source link

After adding this module in Ti SDK 9.0.3 GA app is failing #27

Open rish7 opened 4 years ago

rish7 commented 4 years ago

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.