filestack / filestack-android

Official Android SDK for Filestack - API and content management system that makes it easy to add powerful file uploading and transformation capabilities to any web or mobile application.
https://www.filestack.com
Apache License 2.0
156 stars 90 forks source link

Not able to resolve the filestack android library #214

Open carlosmanuelromeiro opened 1 year ago

carlosmanuelromeiro commented 1 year ago

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.

arifhusaain330 commented 1 year ago

Did you find any solution?

WJimmyCook commented 8 months ago

Same issue here, any idea how to solve it? I'm not very experienced with android development so maybe I'm missing something obvious..

Sarathanu commented 7 months ago

Same issue, Failed to resolve: com.filestack:filestack-android:6.0.0. Where is this library hosted now, post the sunsetting of jcenter?

LinkProIsaac commented 3 months ago

Update on this? if any.

carlosgargz commented 3 months ago

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() 
    }
}
LinkProIsaac commented 3 months ago

Worked for me you are the best.