Skip to content

Installation Instructions

Anirudh S edited this page Mar 16, 2015 · 3 revisions

[Eclipse/ADT]:

  1. Clone or download the library along with its dependencies from the Git repository.

  2. Import it as a library project into your Application.

  3. Set the flag for manifestmerger.enabled to true in your project.properties file:

     manifestmerger.enabled=true
    
  • [Error]: Jar mismatch! Found different versions of jar in the dependency list: Replace the jar in the library with the jar from your project. Clean the project and build again.

[Android Studio]:

  1. Add jcenter as a repository to your app's build.gradle

     repositories {
       jcenter()
     }
    
  2. Add com.tenmiles:helpstack:1.1.2 as a dependency in the same build.gradle

     dependencies {
       compile 'com.tenmiles:helpstack:1.1.2'
     }
    
  • [Issue]: Duplicate files copied in APK: This happens due to library version-mismatch. To avoid using the library from HelpStack, exclude it when you add the dependency. For example:

      compile ('com.tenmiles:helpstack:1.1.2') {
        exclude group: 'org.apache.httpcomponents', module: 'httpmime'
      }
    
Clone this wiki locally