Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Not able to resolve the filestack android library #214

Open
carlosmanuelromeiro opened this issue Jun 23, 2023 · 6 comments
Open

Not able to resolve the filestack android library #214

carlosmanuelromeiro opened this issue Jun 23, 2023 · 6 comments

Comments

@carlosmanuelromeiro
Copy link

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
Copy link

Did you find any solution?

@WJimmyCook
Copy link

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
Copy link

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

@LinkProIsaac
Copy link

Update on this? if any.

@carlosgargz
Copy link

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
Copy link

Worked for me you are the best.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants
@Sarathanu @WJimmyCook @arifhusaain330 @carlosgargz @carlosmanuelromeiro @LinkProIsaac and others