lucasr / smoothie

[DEPRECATED] Easy async loading for Android's ListView/GridView
985 stars 163 forks source link

how can I get "Smoothie's jar" #29

Open flyingfishercn opened 9 years ago

flyingfishercn commented 9 years ago

Can anybody tell me how to get Smoothie's jar from the source code?

theoklink commented 9 years ago

Do you want to use the smoothie library? I use this in my app but have not come across a jar file. It is just a matter of setting up the smoothie library within your project. Assuming you use Android Studio,

  1. place the library in your project folder
  2. edit the module gradle file and add the library eg in this example I use several libraries

dependencies { compile fileTree(dir: 'libs', include: '*.jar') compile project(':holoColorPickermaster') compile project(':smoothie') compile files('libs/disklrucache-1.3.1.jar') compile files('libs/google-play-services.jar') compile files('jcifs-1.3.18.jar') }

  1. edit settings.gradle at the top (app) level, add smoothie eg include ':smoothie', 'holoColorPickermaster' include ':playlistManager'

I hope this helps