gpt4 book ai didi

java - 从 Android 中的 Activity 启动服务时出现 “Unable to start service Intent” 错误

转载 作者:太空狗 更新时间:2023-10-29 15:05:40 35 4
gpt4 key购买 nike

这里是错误的确切描述-

Unable to start service Intent {cmp=com.example.firstapp/com.radiusnetworks.ibeacon.IBeaconIntentProcessor (has extras) } U=0: not found

这是我的 android manifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.firstapp"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="18"
android:targetSdkVersion="18" />
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>

<application

android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.firstapp.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:enabled="true"
android:exported="true"
android:isolatedProcess="false"
android:label="iBeacon"
android:name="com.radiusnetworks.ibeacon.service.IBeaconService">
<meta-data android:name="background" android:value="true" />
<intent-filter
android:priority="1" >
<action android:name="com.example.firstapp.DID_RANGING" />
<action android:name="com.example.firstapp.DID_MONITORING" />
</intent-filter>
</service>

我是 android 和 Java 的新手,但我真的必须让它工作。提前致谢..!!

最佳答案

您没有注册名为IBeaconIntentProcessor 的服务以及哪个包是...

com.radiusnetworks.ibeacon

这就是它找不到服务的原因。

你已经注册了一个服务 IBeaconService 并且是哪个包

com.radiusnetworks.ibeacon.service

Manifest.xml 中注册您的 Service,如下所示...

<service android:name="com.radiusnetworks.ibeacon.IBeaconIntentProcessor">

关于java - 从 Android 中的 Activity 启动服务时出现 “Unable to start service Intent” 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22188230/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com