Simple Android library, which can serve as Image Slider too !
Gradle dependecy
Usage
Check the latest Version
Flurry step by step gradle integration for gradle beginners
About author
compile 'com.github.rohitksingh:Flurry:1.0.3
If you are already familiar with gradle. Add the following code in your root build.gradle .
If you are new to gradle see below Step by step integration guide .
Add hosting repository url
allprojects { repositories { ... maven { url 'https://jitpack.io' } } } Add compile time dependency
dependencies { compile 'com.github.rohitksingh:Flurry:1.0.3' } <com.rohksin.flurry.Flurry android:id="@+id/flurry" android:layout_width="match_parent" android:layout_height="match_parent"/> @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Flurry flurry = (Flurry)findViewById(R.id.flurry); } You can find the latest version of Flurry in JitPack.io
allprojects { repositories { ... maven { url 'https://jitpack.io' } } } 
dependencies { compile 'com.github.rohitksingh:Flurry:1.0.3' } 

This Repository is developed and maintained by
Rohit Singh