Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# CloudSight Android SDK
[![](https://jitpack.io/v/cloudsight/cloudsight-android-sdk.svg)](https://jitpack.io/#cloudsight/cloudsight-android-sdk)

CloudSight API SDK for Android.

Expand Down Expand Up @@ -31,8 +32,22 @@ To use the CloudSight Android SDK, add the compile dependency with the latest ve
You will need to add the `android.permission.INTERNET` and `android.permission.READ_EXTERNAL_STORAGE` permissions in the Manifest of your Android project.

### Gradle

ADD GRADLE DETAILS HERE
To get a Git project into your build:

#### Step 1. Add the JitPack repository to your build file
Add it in your root build.gradle at the end of repositories:

allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
#### Step 2. Add the dependency

dependencies {
implementation 'com.github.cloudsight:cloudsight-android-sdk:Tag'
}

## Usage

Expand Down