项目作者: gsrathoreniks

项目描述 :
Android Shadow library to provide shadow to layout elements
高级语言: Java
项目地址: git://github.com/gsrathoreniks/ShadowLibrary-Android.git
创建时间: 2017-11-24T18:48:21Z
项目社区:https://github.com/gsrathoreniks/ShadowLibrary-Android

开源协议:MIT License

下载


ShadowLibrary-Android

Android library to provide shadow to layout elements

Gradle

STEP 1: Add it in your root build.gradle at the end of repositories:

  1. allprojects {
  2. repositories {
  3. maven { url 'https://jitpack.io' }
  4. }
  5. }

STEP 2: Add the dependency

  1. dependencies {
  2. compile 'com.github.gsrathoreniks:ShadowLibrary-Android:0.1.0'
  3. }

Maven

STEP 1:

  1. <repositories>
  2. <repository>
  3. <id>jitpack.io</id>
  4. <url>https://jitpack.io</url>
  5. </repository>
  6. </repositories>

STEP 2: Add the dependency

  1. <dependency>
  2. <groupId>com.github.gsrathoreniks</groupId>
  3. <artifactId>ShadowLibrary-Android</artifactId>
  4. <version>0.1.0</version>
  5. </dependency>

Sbt

STEP 1: Add it in your build.sbt at the end of resolvers:

  1. resolvers += "jitpack" at "https://jitpack.io"

STEP 2: Add the dependency

  1. libraryDependencies += "com.github.gsrathoreniks" % "ShadowLibrary-Android" % "0.1.0"

Leiningen

STEP 1: Add it in your project.clj at the end of repositories:

  1. :repositories [["jitpack" "https://jitpack.io"]]

STEP 2: Add the dependency

  1. :dependencies [[com.github.gsrathoreniks/ShadowLibrary-Android "0.1.0"]]