1

I am still new in Android development. I want to add a library (which is superslim lib) to my project. just like what the web said, I added following code to dependencies

compile 'com.tonicartos:superslim:0.4.13'

somehow, some classes are missing and I am not able to use it. for example, I want to use SectionAdapter but it's not available. screenshot here

I also try to add .aar file by put the file in libs folder and changed my code in dependencies:

compile 'com.tonicartos:superslim:0.4.13@aar'

but it's still not working. did I miss something?

A. N
  • 153
  • 1
  • 15

1 Answers1

1

There is no class called SectionAdapter in the early_release_4 branch. You can find it in master branch.

Since its current release branch is early_release_4, in other words, v0.4.13, you'd better learn to use the newest version.

RockerFlower
  • 727
  • 2
  • 10
  • 28
  • I see. I was following the example and it's using the master branch. I don't really understand the tutorial provided for early_release_4. This should be the right answer, but last question: is there any way to use the master branch? or is there an example using early_release_4? – A. N Jan 05 '16 at 08:25