Skip to content
tomkoptel edited this page Jun 7, 2016 · 6 revisions

Install Pre-requisites

  1. Install Java SDK. Minimum version 1.7. For details follow this link
  2. Install Android SDK. For details follow this [link] (https://developer.android.com/sdk/index.html#Other)
  3. Install Android build tools version 21.1.2.
  4. Install target SDK version 21.

Install local dependency

The easiest way to install the latest version is to clone a repo and the switch to develop branch.

This will install the local copy of Jaspersoft SDK as maven artifact. If you look for any other version you may switch to tag.

Add dependency on CLIENT

Next step will involve you to paste compile dependencies into your app.gradle file.

buildscript {
    repositories {
        jcenter()
        maven { url 'https://raw.github.com/xujiaao/mvn-repository/master/releases' }
    }
}
dependencies {
    // Dependency on Java Client that is the only one responsible for consuming REST endpoints
    compile 'com.jaspersoft.android.sdk:js-android-sdk-client:2.5'
}
Clone this wiki locally