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}
This commit is contained in:
henrika
2017-02-06 04:58:01 -08:00
committed by Commit bot
parent b114e9c159
commit 447dba9586

View File

@ -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"