filestack-android icon indicating copy to clipboard operation
filestack-android copied to clipboard

Not able to resolve the filestack android library

Open carlosmanuelromeiro opened this issue 2 years ago • 6 comments

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.

carlosmanuelromeiro avatar Jun 23 '23 15:06 carlosmanuelromeiro

Did you find any solution?

arifhusaain330 avatar Jul 24 '23 12:07 arifhusaain330

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

WJimmyCook avatar Dec 03 '23 13:12 WJimmyCook

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

Sarathanu avatar Jan 26 '24 19:01 Sarathanu

Update on this? if any.

LinkProIsaac avatar May 23 '24 14:05 LinkProIsaac

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() 
    }
}

carlosgargz avatar May 23 '24 15:05 carlosgargz

Worked for me you are the best.

LinkProIsaac avatar May 23 '24 15:05 LinkProIsaac