Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The SDK consists of several parts:

To use the SDK, download the API jar and the implementation matching your environment. When upgrading, make sure the versions of both jars match.

...

Expand
titleClick to view Maven configuration ...
Code Block
languagexml
  <dependencies>
      ...
      <dependency>
          <groupId>com.belladati</groupId>
          <artifactId>sdk-java</artifactId>
          <version>0.9.3<4</version>
      </dependency>
  </dependencies>
  <dependencyManagement>
      <dependencies>
          ...
          <dependency>
              <groupId>org.apache.httpcomponents</groupId>
              <artifactId>httpclient</artifactId>
              <version>4.3.1</version>
          </dependency>
          <dependency>
              <groupId>org.apache.httpcomponents</groupId>
              <artifactId>httpcore</artifactId>
              <version>4.3</version>
          </dependency>
      </dependencies>
  </dependencyManagement>

...

Expand
titleClick to view Gradle configuration ...
Code Block
languagegroovy
repositories {
    mavenCentral()
}

dependencies {
	// other dependencies
	// ...
	compile 'com.belladati:sdk-android:0.9.34'
}
Manual Setup

Download and add the following libraries to your project:

...