-
Notifications
You must be signed in to change notification settings - Fork 45
Installation Instructions
Anirudh S edited this page Mar 16, 2015
·
3 revisions
-
Clone or download the library along with its dependencies from the Git repository.
-
Import it as a library project into your Application.
-
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.
-
Add jcenter as a repository to your app's build.gradle
repositories { jcenter() }
-
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' }