Android:找不到同步适配器

发布于 2024-11-15 13:36:22 字数 1120 浏览 4 评论 0原文

为什么 Android 在我打电话时找不到我的同步适配器:

ContentResolver.setSyncAutomatically(account, "com.stevegrosbois.budget.provider", true);

我已经搜索了几个小时:

在日志中:

DEBUG/SyncManager(59): can't find a sync adapter for SyncAdapterType Key {name=com.stevegrosbois.budget.provider, type=com.stevegrosbois.budget.user}, removing settings for it

AndroidManifest.xmlsyncadapter.xml

<service android:name=".sync.SyncService" android:exported="true">
        <intent-filter>
            <action android:name="android.content.SyncAdapter" />
        </intent-filter>
        <meta-data android:name="android.content.SyncAdapter" android:resource="@xml/syncadapter" />
    </service>

<sync-adapter xmlns:android="http://schemas.android.com/apk/res/android"
    contentAuthority="com.stevegrosbois.budget.provider"
    accountType="com.stevegrosbois.budget.user"
    android:supportsUploading="true"
    android:userVisible="true"
/>

我已经尝试了所有方法

现在我哭了:'(

Why Android don't find my sync adapter when i call :

ContentResolver.setSyncAutomatically(account, "com.stevegrosbois.budget.provider", true);

I have searched for hours :

In the Log :

DEBUG/SyncManager(59): can't find a sync adapter for SyncAdapterType Key {name=com.stevegrosbois.budget.provider, type=com.stevegrosbois.budget.user}, removing settings for it

AndroidManifest.xml

<service android:name=".sync.SyncService" android:exported="true">
        <intent-filter>
            <action android:name="android.content.SyncAdapter" />
        </intent-filter>
        <meta-data android:name="android.content.SyncAdapter" android:resource="@xml/syncadapter" />
    </service>

syncadapter.xml :

<sync-adapter xmlns:android="http://schemas.android.com/apk/res/android"
    contentAuthority="com.stevegrosbois.budget.provider"
    accountType="com.stevegrosbois.budget.user"
    android:supportsUploading="true"
    android:userVisible="true"
/>

I have tried everything

And now i'm crying :'(

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

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

发布评论

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

评论(1

硪扪都還晓 2024-11-22 13:36:22

成立 !!!!

android:contentAuthority 而不是我的syncadapter.xml 文件中的 contentAuthority

以及 android:accountType 而不是 accountType

FOUND !!!!

android:contentAuthority instead of contentAuthority in my syncadapter.xml file

also android:accountType instead of accountType

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