Giter Club home page Giter Club logo

Comments (12)

saladthieves avatar saladthieves commented on June 7, 2024 2

@dhargitai thanks for the awesome fix!
@diemer I'm considering sending a pull request with updated instructions and clearer implementation guidelines / goals to make future people's lives easier.

from flutter_crashlytics.

dhargitai avatar dhargitai commented on June 7, 2024

Hi, I had the same issue and following these steps resolved it:
https://firebase.google.com/docs/crashlytics/get-started?authuser=0#android

from flutter_crashlytics.

oliverbytes avatar oliverbytes commented on June 7, 2024

I got the same issue too.. @dhargitai do we only have to add the firebase pod or also the fabric pod?

from flutter_crashlytics.

dhargitai avatar dhargitai commented on June 7, 2024

I got the same issue too.. @dhargitai do we only have to add the firebase pod or also the fabric pod?

Sorry, I don't know, I tried it only for Android so far.

from flutter_crashlytics.

mathieujobin avatar mathieujobin commented on June 7, 2024

worked for me ! thank you

from flutter_crashlytics.

oliverbytes avatar oliverbytes commented on June 7, 2024

worked for me ! thank you

which fix worked for you?

from flutter_crashlytics.

iamnotaturtle avatar iamnotaturtle commented on June 7, 2024

@nemoryoliver adding the fabric.io repo, adding the fabric plugin in the main build.gradle and applying the plugin in the app/build.gradle worked for me. I can see the dashboard initialized without needing a fabric.io account.

Basically the last steps from here: https://github.com/kiwi-bop/flutter_crashlytics#android

from flutter_crashlytics.

diemer avatar diemer commented on June 7, 2024

@nemoryoliver the steps @iamnotaturtle said worked for me as well. I think the confusion is the way the setup instructions read: The API key part is the optional part, the part after it is not.

from flutter_crashlytics.

oliverbytes avatar oliverbytes commented on June 7, 2024

Mine's working great now too as well. Just added some fabric requirements without api key. Thanks a lot all!

from flutter_crashlytics.

kw2019ltd avatar kw2019ltd commented on June 7, 2024

firebase dashboard dose not show any error , error being sent but i dont see it in firebase consol,

if i adding the fabirc aoi key its showing in fabric, but if i remove it and trying only with firebase no error in dashboard

E/AndroidRuntime(15749): Caused by: com.kiwi.fluttercrashlytics.FlutterException: asssssssssssssss
E/AndroidRuntime(15749): at DrawerWidget._buildAppInfoListTile.(package:plants_price_flutter_app/widget/drawer/drawer_widget.dart:56)
E/AndroidRuntime(15749): at _InkResponseState._handleTap(package:flutter/src/material/ink_well.dart:513)
E/AndroidRuntime(15749): at _InkResponseState.build.(package:flutter/src/material/ink_well.dart:568)
E/AndroidRuntime(15749): at GestureRecognizer.invokeCallback(package:flutter/src/gestures/recognizer.dart:120)

from flutter_crashlytics.

congdanh1608 avatar congdanh1608 commented on June 7, 2024

I solved it by this way:

  1. Add this into project gradle
    `buildscript {
    repositories {
    google()
    jcenter()
    maven { url 'https://maven.fabric.io/public' }
    }

    dependencies {
    classpath 'com.android.tools.build:gradle:3.3.2'
    classpath 'com.google.gms:google-services:4.2.0'
    classpath 'io.fabric.tools:gradle:1.26.1'
    }
    }`

  2. Add this into app gradle:
    after "apply plugin: 'com.android.application'"

`apply plugin: 'com.android.application'
apply plugin: 'io.fabric'

repositories {
maven { url 'https://maven.fabric.io/public' }
}`

dependencies { implementation 'com.google.firebase:firebase-core:16.0.7' implementation('com.crashlytics.sdk.android:crashlytics:2.9.9@aar') { transitive = true; } }

and final:

apply plugin: 'com.google.gms.google-services

I also add this into app gradle
debug { // Enable crashlytics build ID generation for debug builds ext.enableCrashlytics = true }

from flutter_crashlytics.

jaumard avatar jaumard commented on June 7, 2024

I'm closing this as it's a configuration issue and fixes has been provided, thanks guys

from flutter_crashlytics.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.