From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- .../androidapp/res/drawable-hdpi/disconnect.png | Bin 0 -> 1404 bytes .../res/drawable-hdpi/ic_action_full_screen.png | Bin 0 -> 587 bytes .../ic_action_return_from_full_screen.png | Bin 0 -> 663 bytes .../androidapp/res/drawable-hdpi/ic_launcher.png | Bin 0 -> 2486 bytes .../res/drawable-hdpi/ic_loopback_call.png | Bin 0 -> 1859 bytes .../androidapp/res/drawable-ldpi/disconnect.png | Bin 0 -> 1404 bytes .../res/drawable-ldpi/ic_action_full_screen.png | Bin 0 -> 461 bytes .../ic_action_return_from_full_screen.png | Bin 0 -> 477 bytes .../androidapp/res/drawable-ldpi/ic_launcher.png | Bin 0 -> 2502 bytes .../res/drawable-ldpi/ic_loopback_call.png | Bin 0 -> 1859 bytes .../androidapp/res/drawable-mdpi/disconnect.png | Bin 0 -> 1404 bytes .../res/drawable-mdpi/ic_action_full_screen.png | Bin 0 -> 461 bytes .../ic_action_return_from_full_screen.png | Bin 0 -> 477 bytes .../androidapp/res/drawable-mdpi/ic_launcher.png | Bin 0 -> 1700 bytes .../res/drawable-mdpi/ic_loopback_call.png | Bin 0 -> 1859 bytes .../androidapp/res/drawable-xhdpi/disconnect.png | Bin 0 -> 1404 bytes .../res/drawable-xhdpi/ic_action_full_screen.png | Bin 0 -> 743 bytes .../ic_action_return_from_full_screen.png | Bin 0 -> 761 bytes .../androidapp/res/drawable-xhdpi/ic_launcher.png | Bin 0 -> 3364 bytes .../res/drawable-xhdpi/ic_loopback_call.png | Bin 0 -> 1859 bytes .../androidapp/res/layout/activity_call.xml | 34 +++ .../androidapp/res/layout/activity_connect.xml | 80 +++++++ .../androidapp/res/layout/fragment_call.xml | 77 +++++++ .../androidapp/res/layout/fragment_hud.xml | 27 +++ .../examples/androidapp/res/menu/connect_menu.xml | 13 ++ .../examples/androidapp/res/values-v17/styles.xml | 10 + .../examples/androidapp/res/values-v21/styles.xml | 4 + .../examples/androidapp/res/values/arrays.xml | 61 +++++ .../examples/androidapp/res/values/strings.xml | 224 +++++++++++++++++++ .../examples/androidapp/res/xml/preferences.xml | 247 +++++++++++++++++++++ 30 files changed, 777 insertions(+) create mode 100644 third_party/libwebrtc/examples/androidapp/res/drawable-hdpi/disconnect.png create mode 100644 third_party/libwebrtc/examples/androidapp/res/drawable-hdpi/ic_action_full_screen.png create mode 100644 third_party/libwebrtc/examples/androidapp/res/drawable-hdpi/ic_action_return_from_full_screen.png create mode 100644 third_party/libwebrtc/examples/androidapp/res/drawable-hdpi/ic_launcher.png create mode 100644 third_party/libwebrtc/examples/androidapp/res/drawable-hdpi/ic_loopback_call.png create mode 100644 third_party/libwebrtc/examples/androidapp/res/drawable-ldpi/disconnect.png create mode 100644 third_party/libwebrtc/examples/androidapp/res/drawable-ldpi/ic_action_full_screen.png create mode 100644 third_party/libwebrtc/examples/androidapp/res/drawable-ldpi/ic_action_return_from_full_screen.png create mode 100644 third_party/libwebrtc/examples/androidapp/res/drawable-ldpi/ic_launcher.png create mode 100644 third_party/libwebrtc/examples/androidapp/res/drawable-ldpi/ic_loopback_call.png create mode 100644 third_party/libwebrtc/examples/androidapp/res/drawable-mdpi/disconnect.png create mode 100644 third_party/libwebrtc/examples/androidapp/res/drawable-mdpi/ic_action_full_screen.png create mode 100644 third_party/libwebrtc/examples/androidapp/res/drawable-mdpi/ic_action_return_from_full_screen.png create mode 100644 third_party/libwebrtc/examples/androidapp/res/drawable-mdpi/ic_launcher.png create mode 100644 third_party/libwebrtc/examples/androidapp/res/drawable-mdpi/ic_loopback_call.png create mode 100644 third_party/libwebrtc/examples/androidapp/res/drawable-xhdpi/disconnect.png create mode 100644 third_party/libwebrtc/examples/androidapp/res/drawable-xhdpi/ic_action_full_screen.png create mode 100644 third_party/libwebrtc/examples/androidapp/res/drawable-xhdpi/ic_action_return_from_full_screen.png create mode 100644 third_party/libwebrtc/examples/androidapp/res/drawable-xhdpi/ic_launcher.png create mode 100644 third_party/libwebrtc/examples/androidapp/res/drawable-xhdpi/ic_loopback_call.png create mode 100644 third_party/libwebrtc/examples/androidapp/res/layout/activity_call.xml create mode 100644 third_party/libwebrtc/examples/androidapp/res/layout/activity_connect.xml create mode 100644 third_party/libwebrtc/examples/androidapp/res/layout/fragment_call.xml create mode 100644 third_party/libwebrtc/examples/androidapp/res/layout/fragment_hud.xml create mode 100644 third_party/libwebrtc/examples/androidapp/res/menu/connect_menu.xml create mode 100644 third_party/libwebrtc/examples/androidapp/res/values-v17/styles.xml create mode 100644 third_party/libwebrtc/examples/androidapp/res/values-v21/styles.xml create mode 100644 third_party/libwebrtc/examples/androidapp/res/values/arrays.xml create mode 100644 third_party/libwebrtc/examples/androidapp/res/values/strings.xml create mode 100644 third_party/libwebrtc/examples/androidapp/res/xml/preferences.xml (limited to 'third_party/libwebrtc/examples/androidapp/res') diff --git a/third_party/libwebrtc/examples/androidapp/res/drawable-hdpi/disconnect.png b/third_party/libwebrtc/examples/androidapp/res/drawable-hdpi/disconnect.png new file mode 100644 index 0000000000..be36174c24 Binary files /dev/null and b/third_party/libwebrtc/examples/androidapp/res/drawable-hdpi/disconnect.png differ diff --git a/third_party/libwebrtc/examples/androidapp/res/drawable-hdpi/ic_action_full_screen.png b/third_party/libwebrtc/examples/androidapp/res/drawable-hdpi/ic_action_full_screen.png new file mode 100644 index 0000000000..22f30d31ca Binary files /dev/null and b/third_party/libwebrtc/examples/androidapp/res/drawable-hdpi/ic_action_full_screen.png differ diff --git a/third_party/libwebrtc/examples/androidapp/res/drawable-hdpi/ic_action_return_from_full_screen.png b/third_party/libwebrtc/examples/androidapp/res/drawable-hdpi/ic_action_return_from_full_screen.png new file mode 100644 index 0000000000..d9436e5248 Binary files /dev/null and b/third_party/libwebrtc/examples/androidapp/res/drawable-hdpi/ic_action_return_from_full_screen.png differ diff --git a/third_party/libwebrtc/examples/androidapp/res/drawable-hdpi/ic_launcher.png b/third_party/libwebrtc/examples/androidapp/res/drawable-hdpi/ic_launcher.png new file mode 100644 index 0000000000..f01a31a717 Binary files /dev/null and b/third_party/libwebrtc/examples/androidapp/res/drawable-hdpi/ic_launcher.png differ diff --git a/third_party/libwebrtc/examples/androidapp/res/drawable-hdpi/ic_loopback_call.png b/third_party/libwebrtc/examples/androidapp/res/drawable-hdpi/ic_loopback_call.png new file mode 100644 index 0000000000..39311853b3 Binary files /dev/null and b/third_party/libwebrtc/examples/androidapp/res/drawable-hdpi/ic_loopback_call.png differ diff --git a/third_party/libwebrtc/examples/androidapp/res/drawable-ldpi/disconnect.png b/third_party/libwebrtc/examples/androidapp/res/drawable-ldpi/disconnect.png new file mode 100644 index 0000000000..be36174c24 Binary files /dev/null and b/third_party/libwebrtc/examples/androidapp/res/drawable-ldpi/disconnect.png differ diff --git a/third_party/libwebrtc/examples/androidapp/res/drawable-ldpi/ic_action_full_screen.png b/third_party/libwebrtc/examples/androidapp/res/drawable-ldpi/ic_action_full_screen.png new file mode 100644 index 0000000000..e4a9ff0a8e Binary files /dev/null and b/third_party/libwebrtc/examples/androidapp/res/drawable-ldpi/ic_action_full_screen.png differ diff --git a/third_party/libwebrtc/examples/androidapp/res/drawable-ldpi/ic_action_return_from_full_screen.png b/third_party/libwebrtc/examples/androidapp/res/drawable-ldpi/ic_action_return_from_full_screen.png new file mode 100644 index 0000000000..f5c80f00e7 Binary files /dev/null and b/third_party/libwebrtc/examples/androidapp/res/drawable-ldpi/ic_action_return_from_full_screen.png differ diff --git a/third_party/libwebrtc/examples/androidapp/res/drawable-ldpi/ic_launcher.png b/third_party/libwebrtc/examples/androidapp/res/drawable-ldpi/ic_launcher.png new file mode 100644 index 0000000000..5492ed770a Binary files /dev/null and b/third_party/libwebrtc/examples/androidapp/res/drawable-ldpi/ic_launcher.png differ diff --git a/third_party/libwebrtc/examples/androidapp/res/drawable-ldpi/ic_loopback_call.png b/third_party/libwebrtc/examples/androidapp/res/drawable-ldpi/ic_loopback_call.png new file mode 100644 index 0000000000..39311853b3 Binary files /dev/null and b/third_party/libwebrtc/examples/androidapp/res/drawable-ldpi/ic_loopback_call.png differ diff --git a/third_party/libwebrtc/examples/androidapp/res/drawable-mdpi/disconnect.png b/third_party/libwebrtc/examples/androidapp/res/drawable-mdpi/disconnect.png new file mode 100644 index 0000000000..be36174c24 Binary files /dev/null and b/third_party/libwebrtc/examples/androidapp/res/drawable-mdpi/disconnect.png differ diff --git a/third_party/libwebrtc/examples/androidapp/res/drawable-mdpi/ic_action_full_screen.png b/third_party/libwebrtc/examples/androidapp/res/drawable-mdpi/ic_action_full_screen.png new file mode 100644 index 0000000000..e4a9ff0a8e Binary files /dev/null and b/third_party/libwebrtc/examples/androidapp/res/drawable-mdpi/ic_action_full_screen.png differ diff --git a/third_party/libwebrtc/examples/androidapp/res/drawable-mdpi/ic_action_return_from_full_screen.png b/third_party/libwebrtc/examples/androidapp/res/drawable-mdpi/ic_action_return_from_full_screen.png new file mode 100644 index 0000000000..f5c80f00e7 Binary files /dev/null and b/third_party/libwebrtc/examples/androidapp/res/drawable-mdpi/ic_action_return_from_full_screen.png differ diff --git a/third_party/libwebrtc/examples/androidapp/res/drawable-mdpi/ic_launcher.png b/third_party/libwebrtc/examples/androidapp/res/drawable-mdpi/ic_launcher.png new file mode 100644 index 0000000000..b8b4b0ec4b Binary files /dev/null and b/third_party/libwebrtc/examples/androidapp/res/drawable-mdpi/ic_launcher.png differ diff --git a/third_party/libwebrtc/examples/androidapp/res/drawable-mdpi/ic_loopback_call.png b/third_party/libwebrtc/examples/androidapp/res/drawable-mdpi/ic_loopback_call.png new file mode 100644 index 0000000000..39311853b3 Binary files /dev/null and b/third_party/libwebrtc/examples/androidapp/res/drawable-mdpi/ic_loopback_call.png differ diff --git a/third_party/libwebrtc/examples/androidapp/res/drawable-xhdpi/disconnect.png b/third_party/libwebrtc/examples/androidapp/res/drawable-xhdpi/disconnect.png new file mode 100644 index 0000000000..be36174c24 Binary files /dev/null and b/third_party/libwebrtc/examples/androidapp/res/drawable-xhdpi/disconnect.png differ diff --git a/third_party/libwebrtc/examples/androidapp/res/drawable-xhdpi/ic_action_full_screen.png b/third_party/libwebrtc/examples/androidapp/res/drawable-xhdpi/ic_action_full_screen.png new file mode 100644 index 0000000000..6d90c071d5 Binary files /dev/null and b/third_party/libwebrtc/examples/androidapp/res/drawable-xhdpi/ic_action_full_screen.png differ diff --git a/third_party/libwebrtc/examples/androidapp/res/drawable-xhdpi/ic_action_return_from_full_screen.png b/third_party/libwebrtc/examples/androidapp/res/drawable-xhdpi/ic_action_return_from_full_screen.png new file mode 100644 index 0000000000..a773b34208 Binary files /dev/null and b/third_party/libwebrtc/examples/androidapp/res/drawable-xhdpi/ic_action_return_from_full_screen.png differ diff --git a/third_party/libwebrtc/examples/androidapp/res/drawable-xhdpi/ic_launcher.png b/third_party/libwebrtc/examples/androidapp/res/drawable-xhdpi/ic_launcher.png new file mode 100644 index 0000000000..a3cd45890c Binary files /dev/null and b/third_party/libwebrtc/examples/androidapp/res/drawable-xhdpi/ic_launcher.png differ diff --git a/third_party/libwebrtc/examples/androidapp/res/drawable-xhdpi/ic_loopback_call.png b/third_party/libwebrtc/examples/androidapp/res/drawable-xhdpi/ic_loopback_call.png new file mode 100644 index 0000000000..39311853b3 Binary files /dev/null and b/third_party/libwebrtc/examples/androidapp/res/drawable-xhdpi/ic_loopback_call.png differ diff --git a/third_party/libwebrtc/examples/androidapp/res/layout/activity_call.xml b/third_party/libwebrtc/examples/androidapp/res/layout/activity_call.xml new file mode 100644 index 0000000000..bf811426f3 --- /dev/null +++ b/third_party/libwebrtc/examples/androidapp/res/layout/activity_call.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + diff --git a/third_party/libwebrtc/examples/androidapp/res/layout/activity_connect.xml b/third_party/libwebrtc/examples/androidapp/res/layout/activity_connect.xml new file mode 100644 index 0000000000..017e5cabff --- /dev/null +++ b/third_party/libwebrtc/examples/androidapp/res/layout/activity_connect.xml @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/third_party/libwebrtc/examples/androidapp/res/layout/fragment_call.xml b/third_party/libwebrtc/examples/androidapp/res/layout/fragment_call.xml new file mode 100644 index 0000000000..90b1e9ca0e --- /dev/null +++ b/third_party/libwebrtc/examples/androidapp/res/layout/fragment_call.xml @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/third_party/libwebrtc/examples/androidapp/res/layout/fragment_hud.xml b/third_party/libwebrtc/examples/androidapp/res/layout/fragment_hud.xml new file mode 100644 index 0000000000..483e7ba456 --- /dev/null +++ b/third_party/libwebrtc/examples/androidapp/res/layout/fragment_hud.xml @@ -0,0 +1,27 @@ + + + + + + + + + diff --git a/third_party/libwebrtc/examples/androidapp/res/menu/connect_menu.xml b/third_party/libwebrtc/examples/androidapp/res/menu/connect_menu.xml new file mode 100644 index 0000000000..a723f54941 --- /dev/null +++ b/third_party/libwebrtc/examples/androidapp/res/menu/connect_menu.xml @@ -0,0 +1,13 @@ + + + + diff --git a/third_party/libwebrtc/examples/androidapp/res/values-v17/styles.xml b/third_party/libwebrtc/examples/androidapp/res/values-v17/styles.xml new file mode 100644 index 0000000000..969b5012e9 --- /dev/null +++ b/third_party/libwebrtc/examples/androidapp/res/values-v17/styles.xml @@ -0,0 +1,10 @@ + + + + diff --git a/third_party/libwebrtc/examples/androidapp/res/values-v21/styles.xml b/third_party/libwebrtc/examples/androidapp/res/values-v21/styles.xml new file mode 100644 index 0000000000..b19af7e38f --- /dev/null +++ b/third_party/libwebrtc/examples/androidapp/res/values-v21/styles.xml @@ -0,0 +1,4 @@ + + +