Android Maven Installation
Setup guide for adding the Told SDK to your Android project using Maven.
1. Add the dependency
Add to your pom.xml:
<dependency>
<groupId>club.told</groupId>
<artifactId>told-android</artifactId>
<version>LATEST_VERSION</version>
</dependency>
2. Ensure Maven Central repository
<repositories>
<repository>
<id>central</id>
<url>https://repo.maven.apache.org/maven2</url>
</repository>
</repositories>
3. Build and initialize
Build your project, then initialize the SDK in your Application class. See Android SDK Installation for the initialization code.