Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 931 Bytes

dependencies.md

File metadata and controls

28 lines (19 loc) · 931 Bytes

Dependencies

This library is published to the Maven Central repository, so you can use it through Gradle/Maven.
You can use it in Eclipse, but Android Studio (or Gradle) is recommended.
In Quick start guide, we assume you're using Android Studio.

build.gradle

Write the following dependency configuration to your build.gradle.

repositories {
    mavenCentral()
}

dependencies {
    // Other dependencies are omitted
    compile 'com.github.ksoichiro:android-observablescrollview:VERSION'
}

You should replace VERSION to the appropriate version number like 1.5.0.

Then, click "sync" button to get the library using the configuration above.

To confirm the available versions, search the Maven Central Repository.

Next: Layout »