felipecsl / AsymmetricGridView

Android ListView that mimics a GridView with asymmetric items. Supports items with row span and column span
http://felipecsl.com/AsymmetricGridView
MIT License
1.84k stars 431 forks source link

Cannot resolve symbole AGVRecyclerViewAdapter #57

Open bymoud opened 8 years ago

bymoud commented 8 years ago

As the title of the issue shows AGVRecyclerViewAdapter cannot be resolved, when I checked the decompiled classes in External Libraries section on my Android Studio project I didn't find it there.

I saw the AGVRecyclerViewAdapter in the source code of the project in Github, is there a difference between the code base and the gradle dependency ?

mikigom commented 7 years ago

I got the same issue, too...

jordantakor commented 7 years ago

Yes the gradle version in the readme and current master branch is different. You should use the snapshot available on sonatype.

Here is how to add it in gradle

First add sonatype as a repository

repositories {
    maven { url("https://oss.sonatype.org/content/repositories/snapshots/") }
}

Then add the snapshot dependancy

dependancies {
     compile 'com.felipecsl.asymmetricgridview:library:3.0.0-SNAPSHOT'
}