Sunteți pe pagina 1din 2

Welcome to the ArcGIS Runtime SDK for Java!

v100.3.0

----------------------------
Overview
----------------------------

The ArcGIS Runtime SDK for Java provides you with the API libraries required to
build apps for ArcGIS Java.

----------------------------
SDK Contents
----------------------------

The ArcGIS Runtime SDK for Java contains everything you need to develop ArcGIS Java
applications.
The contents of the SDK are provided below:

+ doc > API reference doc for arcgis android and arcgis android app toolkit api's.
+ jniLibs > All the platform native libraries (win, macos, linux)
+ legal > All the SDK license files.
+ libs > API jar libraries for arcgis-java and third party dependency jar
libraries.
+ resources > Resources to work with the SDK.
+ samples > A snapshot of the samples from GitHub.

----------------------------
Get started
----------------------------

1. Java JDK installed on your machine with JAVA_HOME env variable set

----------------------------
Set up a project
----------------------------

1. Download the SDK


2. Copy the `jniLibs` folder from the SDK into the root of your project directory.
3. Copy the `resources` folder from the SDK into the root of your project
directory.
4. Add the jar files in the `libs` directory to your classpath.

----------------------------
Set up with Gradle
----------------------------

Gradle is the default build tool for the Java SE SDK. This will install the
required Jar lib dependencies from our maven repository. Add the following to your
gradle build file:

groovy
buildscript{
repositories{
maven{
url "https://esri.bintray.com/arcgis"
}
}
dependencies{
classpath "com.esri.arcgisruntime:arcgis-java-plugin:1.0.0"
}
}

apply
plugin: "com.esri.arcgisruntime.java"

Applying the `com.esri.arcgisruntime.java` plugin extends your project with the


Java SDK to include Jars, native libs, and resources.

S-ar putea să vă placă și