Skip to content

A simple android library project hosted on Jitpack.io and provides the functionality of Carousel and Image Slider

Notifications You must be signed in to change notification settings

rohitksingh/Flurry

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

Flurry The Carousel

Simple Android library, which can serve as Image Slider too !

Table of Contents

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.2

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 .

build.gradle

allprojects {	repositories {	...	maven { url 'https://jitpack.io' }	} } 

build.gradle

dependencies { compile 'com.github.rohitksingh:Flurry:1.0.2' } 

Add following code in your layout

<com.rohksin.flurry.Flurry android:id="@+id/flurry" android:layout_width="match_parent" android:layout_height="match_parent"/> 

Add following code in your Activity

@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

1) Go to your root build.gradle

dependencies { compile 'com.github.User:Repo:Tag' }

repo

2) Add repository link and dependency like this

allprojects { repositories { ... maven { url 'https://jitpack.io' } } }

compile

3) Finally your build.gradle file will look like this

??????? Image

4) Hit the sync Button

gradle

And you are done

This Repository is developed and maintained by

Rohit Singh

About

A simple android library project hosted on Jitpack.io and provides the functionality of Carousel and Image Slider

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages