I want to use JazzyListView in my Project. in Android studio. If I import library like a module all is fine.
compile project(':library')
but I have problem when library(aar) stored in local maven repository.
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
compile 'com.twotoasters:jazzylistview:1.0.+'
}
In runtime activity started and show me a grid/list, but when I scroll it(when animation started) java.lang.NoClassDefFoundError: com.nineoldandroids.view.ViewPropertyAnimator throwed
This library has a dependency
dependencies {
compile 'com.android.support:support-v4:18.0.0'
compile 'com.nineoldandroids:library:2.4.0'
}
please tell me, what I'm doing wrong?
used: http://www.flexlabs.org/2013/06/using-local-aar-android-library-packages-in-gradle-builds