filestack-android
filestack-android copied to clipboard
Not able to resolve the filestack android library
During the integration of the library in a current Android project I noticed that gradle was not able to resolve it despite being declared as it is stated in the documentation:
implementation 'com.filestack:filestack-android:5.3.0'
The current repositories specified are the following:
repositories { google() jcenter() mavenCentral() }
If any additional information is required to address this issue feel free to ask. Thanks in advance for any feedback provided regarding this problem.
Did you find any solution?
Same issue here, any idea how to solve it? I'm not very experienced with android development so maybe I'm missing something obvious..
Same issue, Failed to resolve: com.filestack:filestack-android:6.0.0. Where is this library hosted now, post the sunsetting of jcenter?
Update on this? if any.
Try changing the line for
implementation 'com.github.filestack:filestack-android:6.0.0'
make sure in your build.gradle (Project level) you have defined the following
allprojects {
repositories {
maven { url 'https://jitpack.io' }
google()
mavenCentral()
jcenter()
}
}
Worked for me you are the best.