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

Failed to resolve: com.andrognito.pinlockview:pinlockview:2.1.0 This error I take #78

Open
kariosnetwork opened this issue Aug 20, 2024 · 5 comments

Comments

@kariosnetwork
Copy link

Could not resolve com.andrognito.pinlockview:pinlockview:2.1.0. This Details

@safu2011
Copy link

safu2011 commented Sep 2, 2024

same issue

@Bieenn01
Copy link

is this fixed ?

@generalmimon
Copy link

According to https://mvnrepository.com/artifact/com.andrognito.pinlockview/pinlockview, the artifacts of this library were published in the JCenter repository, which has been recently shut down on August 15th, 2024 (2024-08-15): https://jfrog.com/blog/jcenter-sunset/

Some older articles like https://developer.android.com/build/jcenter-migration refer to the previous statement of JFrog from this article from 2021 claiming that they "will keep JCenter as a read-only repository indefinitely", but in July 2024 they changed their mind:

UPDATE 7/2/2024: After over three years of maintaining JCenter as a read-only repository for legacy Java packages, JFrog is moving forward with an official sunset of JCenter, and, in coordination with Maven Central, will begin automatically redirecting all JCenter requests to the Maven Central Repository. The first of several service brown-outs is scheduled for July 30th and will periodically continue until the final shutdown of JCenter on August 15th. For more details, please see JFrog’s official announcement.

If this project was still maintained, the solution to this would be to migrate to another package host such as Maven Central. This was already suggested in #74. However, since this project hasn't been updated since 2017 (see https://github.com/aritraroy/PinLockView/graphs/contributors), it seems very unlikely that this will happen.

Does anyone know of an alternative?

@mesharkw
Copy link

mesharkw commented Oct 26, 2024

We can try use it directly from git:

build.gradle(app)
implementation 'com.github.aritraroy:PinLockView:master-SNAPSHOT'

and in build.gradle(project)
maven { url 'https://jitpack.io' }

in

allprojects {
    repositories {
        jcenter()
        maven { url 'https://jitpack.io' }

    }
}

This worked fro me.

@thecyfrin
Copy link

We can try use it directly from git:

build.gradle(app) implementation 'com.github.aritraroy:PinLockView:master-SNAPSHOT'

and in build.gradle(project) maven { url 'https://jitpack.io' }

in

allprojects {
    repositories {
        jcenter()
        maven { url 'https://jitpack.io' }

    }
}

This worked fro me.

This works. Great suggestion

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

6 participants