Posts

Showing posts with the label crashlytics

Crash Report for Flutter

I am new to flutter. I developed one Wallpaper App using flutter and upload in playstore. Now i need to track crash report for that app. In Android have crashlytics to all report crash and more fearure's. Is crashlytics support in flutter ?. I looked sentry plugin but it's not free. Any help Appreciable. Sentry is currently the only solution provided by the Flutter team. Crashlytics support is planned https://github.com/flutter/flutter/issues/14765 update There is now a community package with crashlytics support as well https://pub.dartlang.org/packages/flutter_crashlytics

Could not find method create() for arguments - Crashlytics issue

Could not find method create() for arguments [crashlyticsStoreDeobsDebug, class com.crashlytics.tools.gradle.tasks.StoreMappingFileTask, com.android.build.gradle.internal.scope.BuildArtifactsHolder$FinalBuildableArtifact@2ac9ac29] on task set of type org.gradle.api.internal.tasks.DefaultTaskContainer. Project was in working state but since today build is failing with above error. Android Studio 3.2 Preview. It looks like Fabric released a new version thats breaks the build for some apps. If you have the line io.fabric.tools:gradle:1.+ (which is recommended by Fabric, but not ideal) you will automatically use the new version. In the meantime you can replace 1.+ with the latest "stable" version which is 1.25.4. io.fabric.tools:gradle:1.25.4 For me, the problem appeared when I updated to AS 3.2-RC02 which requires the Android plugin 3.2.0-rc02. So I had to roll back to AS 3.1.4 which is the current stable version so I could downgrade my version of the Android plugin. I...