Installation guide

Titan SDK is an Android Library, so if you use the new Gradle to build your app it will include all the resources and manifest elements.

Gradle integration

Add this to your build.gradle file:

repositories {
  maven {
    url 'https://scopelybin.artifactoryonline.com/scopelybin/repo'
  }
}

dependencies {
  compile 'com.scopely:titan-sdk:1.6.12'
}

Maven integration

Add this to your pom.xml file:

<repositories>
  <repository>
    <id>scopely</id>
    <url>https://scopelybin.artifactoryonline.com/scopelybin/repo</url>
  </repository>
</repositories>

<dependency>
  <groupId>com.scopely</groupId>
  <artifactId>titan-sdk-uberjar</artifactId>
  <version>0.10</version>
</dependency>

Manual integration

Grab the jar and do your thing.

Example

There’s an example application where you will learn how to:

  • initialize the SDK
  • include the SDK in your classpath
  • track events
  • update user properties
  • use Scopely’s A/B testing solution

You can download it from here.