Integrating Helpshift SDK for Android via Maven
Adding the latest stable release
Internationalized SDK
To use Helpshift SDK via Maven add the following dependency to your
<dependencies>
tag:
<dependency>
<groupId>com.helpshift</groupId>
<artifactId>android-helpshift-lib</artifactId>
<version>v7.11.2</version>
<type>apklib</type>
</dependency>
Import design library
You also need to ensure that dependencies for design , cardview and recyclerview library
are added to your <dependencies>
tag. You can use the Maven Android SDK Deployer
to install the libraries necessary, from your local Android SDK installation. To install the required support libraries, run mvn install -P 4.3
from within the maven-android-sdk-deployer folder.
<dependency>
<groupId>android.support</groupId>
<artifactId>design</artifactId>
<version>23.1.1</version>
</dependency>
<dependency>
<groupId>android.support</groupId>
<artifactId>recyclerview-v7</artifactId>
<version>23.1.1</version>
</dependency>
<dependency>
<groupId>android.support</groupId>
<artifactId>cardview-v7</artifactId>
<version>23.1.1</version>
</dependency>
Your Maven project is now integrated with Helpshift SDK for Android.
Proceed further with initializing helpshift SDK in your app.
Sample project
You can refer to the following sample app which uses the Helpshift Android SDK via Maven -
HelpshiftDemoMaven | HelpshiftDemo project using Maven instead of Ant |