Photoview: compile 'com.commit451:PhotoView:1.2.4' not working

Created on 27 Oct 2015  路  9Comments  路  Source: Baseflow/PhotoView

i can't see your lib classes with this gradle in my code .

Most helpful comment

right link is

implementation 'com.github.chrisbanes.photoview:library:1.2.4'

Author should change link in README

All 9 comments

Are you saying it won't resolve at all or just you cannot see the source?

When i try to call your classes after syncing gradle compile 'com.commit451:PhotoView:1.2.4'
i can't see any.
I used this one instead compile 'com.github.chrisbanes.photoview:library:1.2.2' and it worked fine

+1 Gradle build does not complain about not being able to find the library, but PhotoView classes are not accesible after compile.

I use this :
compile 'com.github.chrisbanes.photoview:library:1.2.4'
And it works properly for me. But perhaps this is not the right way to proceed.

It is possible that you are include mavenCentral and not jcenter. This dependency now requires you to use jcenter

I added the line maven { url "https://jitpack.io" } to the root build.gradle file but doesn't work for me Error:Could not find com.github.chrisbanes:PhotoView:1.3.0.

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

worked for me!

right link is

implementation 'com.github.chrisbanes.photoview:library:1.2.4'

Author should change link in README

Thikn's :pavel-ismailov

Was this page helpful?
0 / 5 - 0 ratings

Related issues

keeblebogdan picture keeblebogdan  路  5Comments

Thien658jjh picture Thien658jjh  路  4Comments

pfives picture pfives  路  15Comments

fkirc picture fkirc  路  4Comments

anthony3444 picture anthony3444  路  9Comments