Android Device Debug

AndroidManiFest.xml에 android:debuggable="true 추가


<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.ex.Test_Layout"
      android:versionCode="1"
      android:versionName="1.0">


    <application android:icon="@drawable/icon" 
     android:label="@string/app_name"
     android:debuggable="true">
        <activity android:name=".Test_Layout"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

    </application>
</manifest>

'Programing' 카테고리의 다른 글

이클립스 자동주석(메소드 주석)  (0) 2011.08.09
이클립스 기능  (0) 2009.12.22

+ Recent posts