-
Notifications
You must be signed in to change notification settings - Fork 8
Home
tomkoptel edited this page Jun 7, 2016
·
6 revisions
- Install Java SDK. Minimum version 1.7. For details follow this link
- Install Android SDK. For details follow this [link] (https://developer.android.com/sdk/index.html#Other)
- Install Android build tools version 21.1.2.
- Install target SDK version 21.
The easiest way to install the latest version is to clone a repo and the switch to develop
branch.
- git clone https://github.com/Jaspersoft/js-android-sdk.git
- cd js-Android-SDK/
- git checkout develop
- grad law install
This will install the local copy of Jaspersoft SDK as maven artifact. If you look for any other version you may switch to tag.
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'
}
- Home
- [API JavaDocs reference page](API JavaDocs reference page)
- Sample: Get Server Info