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

发布于 2024-12-09 03:27:14 字数 1323 浏览 0 评论 0原文

我向我的应用程序添加了一些 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!

每当我将其添加到清单中时,就会发生这种情况:

这是它周围的 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>

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

I added some NFC permissions to my app and now it no longer enters into debug mode. It just says "installed on device... done!"

 [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!

it happens whenever I have added this to the manifest:

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

this the xml around it

  <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>

I want to be able to debug with my breakpoints, why is this being prevented?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

゛清羽墨安 2024-12-16 03:27:14

您可以尝试将 TECH_DISCOVERED 放入其自己的 中,使用 MAIN 和 LAUNCHER 将其从列表中取出,

<intent-filter>

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

<intent-filter>'

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

You can try putting the TECH_DISCOVERED in its own , take it out of the list with MAIN and LAUNCHER

<intent-filter>

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

<intent-filter>'

I did it that way and am able to debug my NFC app.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文