Neither user … nor current process has android.permission.WAKE_LOCK

Se nel “LogCat” di Eclipse vi appare un messaggio simile a:

ERROR/AndroidRuntime(...): java.lang.RuntimeException:
Unable to start activity...: java.lang.SecurityException:
Neither user ... nor current process has android.permission.WAKE_LOCK.
[...]

potete provare ad aggiungere la seguente riga nel Manifest:

<uses-permission android:name="android.permission.WAKE_LOCK" />

Device requires that applications explicitely declare themselves as debuggable in their manifest

Se vi compare il seguente messaggio nella Console di Eclipse:

Device 'device_name' requires that applications explicitely
declare themselves as debuggable in their manifest.
Application 'com.prj.test01' does not have the attribute
'debuggable' set to TRUE in its manifest and cannot be debugged.

potete risolvere questo errore come suggerito sopra, semplicemente aggiungendo l’attributo:

android:debuggable="true"

nel Manifest della vostra applicazione, dentro il tag:

<application android:icon="@drawable/icon"
  android:label="@string/app_name"
  android:debuggable="true">

Ricordatevi di rimuoverlo una volta terminate le operazioni di debug.