Replies: 6 comments
-
The issue at flutter/flutter#38947 has been closed and moved here. Future collaboration on this issue will be done here. |
Beta Was this translation helpful? Give feedback.
-
Hi @WillieWangWei |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
https://github.com/WillieWangWei/Flutter-Debug/blob/master/flutter%20build%20ios%20--verbose.txt |
Beta Was this translation helpful? Give feedback.
-
https://github.com/WillieWangWei/Flutter-Debug/blob/master/flutter%20run%20--verbose.txt |
Beta Was this translation helpful? Give feedback.
-
I did this:
void main() {
Crashlytics.instance.enableInDevMode = true;
FlutterError.onError = Crashlytics.instance.recordFlutterError;
runApp(SDApp());
}
class SDApp extends StatelessWidget {
final FirebaseAnalytics analytics = FirebaseAnalytics();
@override
Widget build(BuildContext context) => MaterialApp(
...
home: SDTabPage(),
navigatorObservers: [
FirebaseAnalyticsObserver(analytics: analytics),
],
...
);
}
|
Beta Was this translation helpful? Give feedback.
-
Steps to Reproduce
My iOS app uses google analytics with "firebase analytics ^5.0.0", but when I view the information in the Firebase console, I get the following image:
My question is: Is there any way to make the data more specific and precise? This is not working properly now.
Logs
Beta Was this translation helpful? Give feedback.
All reactions