找不到与AndroidManifest.xml匹配的资源

时间:2018-12-11 14:42:37

标签: xamarin.forms android-manifest accessibilityservice

我正在尝试遵循此解决方案Broadcast Receiver Not Working After Device Reboot in Android,但出现以下错误:

  

未找到与给定名称匹配的资源(在'resource'中值为'@ xml / my_accessibility_service')。

enter image description here

使用my_accessibility_service.xml:

<?xml version="1.0" encoding="utf-8" ?>
<accessibility-service
  xmlns:android="http://schemas.android.com/apk/res/android"
    android:packageNames="myapp"
    android:accessibilityFeedbackType="feedbackSpoken"
    android:description="@string/service_desc"
    android:notificationTimeout="100">
</accessibility-service>

为什么会这样? 谢谢。

1 个答案:

答案 0 :(得分:0)

我解决了编译错误,方法是将文件传输到布局文件夹,然后@xml写入@layout。