twilio / voice-quickstart-android

Quickstart app for the Voice Android SDK
https://www.twilio.com/docs/api/voice-sdk/android/getting-started
MIT License
184 stars 140 forks source link

Using Voice Android 6.1.0 #518

Closed kbagchiGWC closed 2 years ago

kbagchiGWC commented 2 years ago

6.1.0

May 9th, 2022

API updates

Existing customers can now migrate their Voice use-cases to data centers in Ireland or Australia to establish data residency within the region. In addition, new customers may now select Ireland or Australia as their region of choice for Voice related use cases. There is no additional cost to use the new data centers in Ireland or Australia. To learn more about Regional Voice, check out our blog post or head over to our developer docs to get started.

Below is an example of specifying home region in the access token using the Twilio Node.js helper library:

const accessToken = new twilio.jwt.AccessToken(
    credentials.accountSid,
    credentials.apiKeySid,
    credentials.apiKeySecret, {
      identity,
      ttl,
      region: 'au1',
    },
  );

The decoded header of your access token should look like this:

{
  "alg": "HS256",
  "typ": "JWT",
  "cty": "twilio-fpa;v=1",
  "twr": "au1"
}

Maintenance

Bug Fixes

Things to Note

Library size report

ABI APK Size Impact
x86 4MB
x86_64 4MB
armeabi-v7a 3.3MB
arm64-v8a 3.8MB
universal 14.9MB

Contributing to Twilio

All third-party contributors acknowledge that any contributions they provide will be made under the same open-source license that the open-source project is provided under.