Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Voice Android SDK 4.0.0 #289

Merged
merged 3 commits into from
Jun 29, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ android {
dependencies {
testImplementation 'junit:junit:4.12'

implementation 'com.twilio:voice-android:3.3.0'
implementation 'com.twilio:voice-android:4.0.0'
implementation 'com.android.support:design:27.0.2'
implementation 'com.android.support:appcompat-v7:27.0.2'
implementation 'com.squareup.retrofit:retrofit:1.9.0'
Expand Down
10 changes: 10 additions & 0 deletions app/src/main/java/com/twilio/voice/quickstart/VoiceActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,16 @@ public void onConnected(Call call) {
activeCall = call;
}

@Override
public void onReconnecting(@NonNull Call call, @NonNull CallException callException) {
Log.d(TAG, "onReconnecting");
}

@Override
public void onReconnected(@NonNull Call call) {
Log.d(TAG, "onReconnected");
}

@Override
public void onDisconnected(Call call, CallException error) {
setAudioFocus(false);
Expand Down