Crashlytics Error:(11, 0) Plugin with id 'io.fabric' not found compile lib

前端 未结 6 1267
野的像风
野的像风 2020-12-28 17:36

I am getting the error,

Error:(11, 0) Plugin with id \'io.fabric\' not found

when trying to run crashlytics on my project.

6条回答
  •  醉酒成梦
    2020-12-28 17:58

    You just forget to add below mentioned line in Project level gradle file.

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

    Also please add below mentioned line in dependencies (in project level gradle file)

    classpath 'io.fabric.tools:gradle:1.26.1'
    

提交回复
热议问题