Add debuggable=true to AppRTCMobile manifest.
Improves possibility to debug the demo application using adb.
As an example, now allows 'adb run as' which is useful when profiling CPU. It enables us to do profiling on non-rooted devices (excluding details).
BUG=NONE
Review-Url: https://codereview.webrtc.org/2676983003
Cr-Commit-Position: refs/heads/master@{#16446}
diff --git a/webrtc/examples/androidapp/AndroidManifest.xml b/webrtc/examples/androidapp/AndroidManifest.xml
index f3323a8..f777ee5 100644
--- a/webrtc/examples/androidapp/AndroidManifest.xml
+++ b/webrtc/examples/androidapp/AndroidManifest.xml
@@ -21,7 +21,8 @@
<application android:label="@string/app_name"
android:icon="@drawable/ic_launcher"
- android:allowBackup="false">
+ android:allowBackup="false"
+ android:debuggable="true">
<activity android:name="ConnectActivity"
android:label="@string/app_name"