I am using Android Studio 0.8.2 and debugging my Sony Xperia Z (USB). I often get errors in Android Studio when starting / debugging my application, for example:
[XTWiFi-PE] unknown deliver target [OS-Agent]
This happens, for example, if I add these two lines to the outer LinearLayout in activity_main.xml:
android:clickable="true" android:focusableInTouchMode="true"
These two lines allow my EditText to lose focus when the user touches the background of the application. How can I get rid of this error? What does “unknown deliver target” mean?
source share