1
我在android中編寫了定位服務。在AndroidManifest.xml中,定義了兩個意圖過濾器:向Android定製ROM添加位置服務時出錯
<service
android:name=".LocationServiceV2"
android:exported="true"
android:permission="android.permission.ACCESS_COARSE_LOCATION">
<intent-filter>
<action android:name="com.android.location.service.v3.NetworkLocationProvider" />
<action android:name="com.android.location.service.v2.NetworkLocationProvider" />
</intent-filter>
<meta-data
android:name="serviceVersion"
android:value="2" />
<meta-data
android:name="serviceIsMultiuser"
android:value="false" />
</service>
但是當我的Nexus 5X在logcat中顯示運行這個錯誤:
com.example.user.nlpservice
解析服務com.android.location.service.v3.NetworkLocationProvider
,但簽名錯誤,忽略 什麼手段通過錯誤的簽名和我如何解決這個問題?