添加某些权限后,Android无法调试

时间:2011-10-09 01:11:24

标签: android xml debugging android-manifest nfc

我为我的应用添加了一些NFC权限,现在它不再进入调试模式。它只是说“安装在设备上......完成了!”

 [2011-10-08 20:58:37 - myApp] Automatic Target Mode: using device '3433254FAA1500EC'
 [2011-10-08 20:58:37 - myApp] Uploading myApp.apk onto device '3433254FAA1500EC'
 [2011-10-08 20:58:37 - myApp] Installing myApp.apk...
 [2011-10-08 20:58:39 - myApp] Success!
 [2011-10-08 20:58:39 - myApp] /myApp/bin/myApp.apk installed on device
 [2011-10-08 20:58:39 - myApp] Done!
每当我将它添加到清单时就会发生这种情况:

<action android:name="android.nfc.action.TECH_DISCOVERED" />

这是它周围的xml

  <activity android:name="Home"
              android:screenOrientation="portrait"
              android:label="@string/app_name"
              android:configChanges="orientation|keyboardHidden">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <action android:name="android.nfc.action.TECH_DISCOVERED" />
            <category android:name="android.intent.category.LAUNCHER" />


        </intent-filter>

            <meta-data android:name="android.nfc.action.TECH_DISCOVERED"
                android:resource="@xml/filter_nfc"
            />

    </activity>

我希望能够使用断点进行调试,为什么会阻止它?

1 个答案:

答案 0 :(得分:1)

您可以尝试将TECH_DISCOVERED放入其中,使用MAIN和LAUNCHER将其从列表中删除

<intent-filter>

<action android:name="android.nfc.action.TECH_DISCOVERED" />

<intent-filter>'

我这样做了,并且能够调试我的NFC应用程序。