Jenkins doesn't build project with firebase

I have an Android project that was previously built in jenkins. But when I added the firebase project to the base, Jenkins stopped building the project. The error text looks like this.

Could not find com.google.firebase:firebase-core:11.0.1.
     Required by:
         project :data
   > Could not find com.google.firebase:firebase-config:11.0.1.
     Required by:
         project :data
   > Could not find com.google.firebase:firebase-messaging:11.0.1.
     Required by:
         project :data

      

So what's the problem? Thank.

+3


source to share


1 answer


Do the following on your server running jenkins ( Google Repository

artifacts should be zeroed out).



android update sdk --no-ui 

      

+3


source







All Articles