我使用与BasicSyncAdapter example相同的方式实施了同步任务,但在此答案中使用了Google帐户:
https://stackoverflow.com/a/2972918/2072569
适用于所有设备,除了采用Android 4.4.2的三星SM-P600(Galaxy Note 2014)和其他一些三星平板电脑。
清单文件中的我的ContentProvider有一个标签。根据某些三星平板电脑的某些Android版本的this post,这就是导致此错误的原因。
由于某种原因,三星是否阻止向Google帐户添加同步任务?
同步添加如下:
removeAllSyncTasks();
ContentResolver.setIsSyncable(mAccount, CONTENT_AUTHORITY, 1);
ContentResolver.setSyncAutomatically(mAccount, CONTENT_AUTHORITY, true);
ContentResolver.addPeriodicSync(mAccount, CONTENT_AUTHORITY, Bundle.EMPTY, SYNC_FREQUENCY);
清单部分:
<service
android:name=".data.sync.SyncService"
android:exported="true"
android:process=":sync">
<intent-filter>
<action android:name="android.content.SyncAdapter"/>
</intent-filter>
<meta-data android:name="android.content.SyncAdapter"
android:resource="@xml/syncadapter" />
</service>
<provider
android:name=".data.provider.LevensContentProvider"
android:authorities="@string/authority"
android:label="@string/app_name_sync"
android:exported="false"
android:syncable="true" />
Syncadapter xml:
<?xml version="1.0" encoding="utf-8"?>
<sync-adapter
xmlns:android="http://schemas.android.com/apk/res/android"
android:contentAuthority="@string/authority"
android:accountType="com.google"
android:userVisible="true"
android:supportsUploading="true"
android:allowParallelSyncs="false"
android:isAlwaysSyncable="true"/>
当我手动启动同步时。 Syncservice也没有从三星平板电脑开始(它适用于所有其他设备)。
答案 0 :(得分:2)
事实证明它与三星/操作系统版本无关......
我的SyncHelper的构造函数是:
$(".slideshow").each(function() {
var imageHeight = $(this).find('.slideshow-inner:first-child').outerHeight();
console.log(imageHeight);
});
这不会检查帐户类型。在列表中有一个类型为com.evernote的帐户,这用于同步,而且当然没有工作。
添加了这个来解决它:
public SyncHelper(Context context, String accountName) {
Account account = null;
Account[] accounts = AccountManager.get(context).getAccounts();
for (Account acc : accounts) {
if(acc.name.equals(accountName)){
account = acc;
}
}
if(account == null){
throw new InvalidParameterException("Account not found");
}
init(context, account);
}
现在我可以开始撞墙了;; - )