[Under Development] React Native

Acquire SDK can be easily integrated into React Native.

You can refer react-native-doc to use Native components.

Acquire SDK is the same as any other third party native library

You will need to add

allprojects {
...
    repositories {
   // Add this lines
        maven {
                url "https://android-sdk.acquire.io/artifactory/libs-release/"
        }
    }
...
}

this maven URL to your project level gradle.

And add this to your app Module's build.gradle

dependencies {
    implementation 'io.acquire:core-twilio-beta:1.+'
}

Register Acquire SDK in the onCreate() method of an Activity/Application where you plan to use the SDK. Use the initialization details provided by the Acquire Support admin and an Application instance:

Initialize Acquire SDK with accountID by using this method.

Permissions We include the INTERNET permission by default as we need it to make network requests:

Needed below permissions to make audio/video calls.

Needed below permissions for attachments to share from the app.

You can download our demo react native source code.

To know more about initialization options click here.

To get session events click here.

Last updated