views:

157

answers:

1

I want to debug my app from my phone. how do i sign my app so i can do this? i dont know much about the manifest.

+2  A: 
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    ...
    <application android:icon="@drawable/icon"
        android:debuggable="true"
drawnonward