0

I'm trying to add LiquidCore dependency to my project via Android Studio.

So I added Jitpack project's build.gradle like:

allprojects {
  repositories {
      jcenter()
      maven {
          url 'https://maven.google.com/'
          name 'Google'
      }
      maven {
          url 'https://jitpack.io'
          name 'Jitpack'
      }
  }
}

Then I went File -> Project Structure -> app -> Dependencies -> I clicked + -> I chosen Library dependency

this is how it looked like

Then I typed LiquidCore -> nothing. Then I typed LiquidPlayer -> nothing again.

When I manually added this to app's build.gradle

dependencies {
  //other
  implementation 'com.github.LiquidPlayer:LiquidCore:0.5.1'
}

then it works. Why it was not found for the first way?

Marian Paździoch
  • 8,813
  • 10
  • 58
  • 103

1 Answers1

0

It's not a problem. I didn't find another libraries also by your first way. We have to add manually.

Manzurul Hoque Rumi
  • 2,911
  • 4
  • 20
  • 43