Skip to content
Open
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 android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>

<application
android:name="io.flutter.app.FlutterApplication"
android:name="${applicationName}"
android:label="BBB"
android:icon="@mipmap/ic_launcher">
<activity
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
buildscript {
ext.kotlin_version = '1.3.50'
ext.kotlin_version = '1.5.10'
repositories {
google()
jcenter()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class CallConnection extends CallManager implements SipUaHelperListener {

/// As soon as we are connected, connect to the echo call
if (state.state == TransportStateEnum.CONNECTED) {
helper.call(super.buildEcho(), true);
helper.call(super.buildEcho(), voiceonly: true);
}
}

Expand All @@ -164,4 +164,9 @@ class CallConnection extends CallManager implements SipUaHelperListener {
_call.sendDTMF("1", {"duration": 2000});
_echoTestDone = true;
}

@override
void onNewNotify(Notify ntf) {
// TODO: implement onNewNotify
}
}
Loading