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

9 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.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'
}

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 project build.gradle and this

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

repo

2) Go to app modile build.gradle and add this

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

compile

3) 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