![]()
Acquire for Android supports API 21 and above.
Sample app for co-browse only mode Android
- Android Studio 2.2.x
- Gradle 2.2.x
- Android 7.1.1 SDK
- Android device running Android 5.0 or newer (To get fully functioning sdk)
Add the following dependency to your app's build.gradle file:
implementation 'com.acquireio:lite:1.+'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:appcompat-v7:28.0.0-rc01'
implementation('io.socket:socket.io-client:1.0.0') {
exclude group: 'org.json', module: 'json'
}For our sdk you will need to add these lines to your project's build.gradle.
// Add these lines to your project gradle:
allprojects {
repositories {
maven {
url "http://107.155.116.28:8086/artifactory/libs-release-local"
}
}
}- Our installation guide contains full setup and initialisation instructions.
- Please contact us on Acquire with any questions you may have, we're only a message away!
We include the INTERNET permission by default as we need it to make network requests:
<uses-permission android:name="android.permission.INTERNET"/>- Make sure you've installed the Android 8.0 SDK and upgraded to the latest version of Android Studio
- Make sure you've updated all support repository and Google Play Services repository packages in the Android SDK manager
- See the configuration and clone the environment into your project to run our Acquire chat sdk.
Note : If you are using gradle Plugin version 3.0 then use implementation instead of compile.