Crashlytics Fabric : Failed to execute task

前端 未结 12 1832
暖寄归人
暖寄归人 2020-12-20 11:04

I\'ve been having an issue and I don\'t know how to fix it.

My project use crashlytics, but it\'s always crash and not sent report. I have a TimeoutException:

<
12条回答
  •  醉酒成梦
    2020-12-20 11:26

    I fixed the TimeoutException by adding the following to my build.gradle

    ext.enableCrashlytics = true
    

    Or if you have several extensions already:

    ext {
        ...
        enableCrashlytics = true
    }
    

    You can put it in your application's build.gradle.

提交回复
热议问题