Sync adapters are software components in Android that allow synchronizing local data with remote backends reducing the effort necessary to avoid data-connection overload
18
votes
1answer
3k views
Why does ContentResolver.requestSync not trigger a sync?
I am trying to implement the Content-Provider-Sync Adapter pattern as discussed at Google IO - slide 26. My content provider is working, and my sync works when I trigger it from the Dev Tools Sync ...
10
votes
5answers
7k views
Own sync adapter for Android?
The press release of Android 2.0 states that the new release supports sync adapters so that emails and calendars cannot only be synced with gmail and exchange. However, there is no information ...
9
votes
1answer
2k views
Android SyncAdapter use case
What we are doing currently?
We have some structured, textual data on a server which is exposed using web services(RESTful). My application polls this server regularly(AlarmManagerService) to fetch ...
8
votes
3answers
4k views
How do I use the Android Sync Adapter?
I try to understand the android sync logic. What I don't understand is this file http://developer.android.com/resources/samples/SampleSyncAdapter/res/xml/syncadapter.html
OK... now I've read a lot ...
7
votes
1answer
2k views
SyncAdapter without a ContentProvider
I want to implement a SyncAdapter for a content I want to synchronize with a server. It seems that to do so, you need a ContentProvider registered for the authority you specify in the SyncAdapter XML ...
6
votes
1answer
1k views
When SyncAdapter runs synchronization on android?
Let's say, my application implements SyncAdapter functionality and doesn't define periodic syncs. When synchronization will happen in such scenario? First scenario I may think about is local ...
5
votes
2answers
138 views
Google Account Required Syncability Feature
I was looking at the code for JumpNotes and there was one thing I just could not figure out.
JumpNotes: AccountList.java
public static final String[] GOOGLE_ACCOUNT_REQUIRED_SYNCABILITY_FEATURES ...
3
votes
1answer
499 views
How do I implement an Account on Android without a SyncAdapter
I am implementing a login system for an Android application utilizing the built-in accounts system (with the AccountManager APIs).
All is well and good on Android 2.2+, but on Android 2.1 not ...
2
votes
1answer
56 views
How do I define a SyncAdapter to NOT sync by default?
So I have a SyncAdapter implemented in my app. I use the user's existing Google account since I am syncing with Google Tasks. In the app, users have to go to preferences, enable sync and select an ...
2
votes
0answers
43 views
syncadapter without internet connection
I have a sync adapter that works fine. It does not need internet connection because it needs to sync the addressbook with another local storage (my application).
When the Wifi is turned off and the ...
2
votes
1answer
126 views
honeycomb sync adapter features for editing contacts
I'm developing a sync adapter.
I found this: http://groups.google.com/group/android-developers/msg/85f9304dfcc4e284
In that forum a google employee states:
In releases of Android from Eclair ...
2
votes
1answer
192 views
data & synchronization - manually sync mail. calender and contacts
I am trying to write an app that syncs my mail and my calender with just a single click. After looking through this forum I found some good hints and wrote a short test app that takes my first google ...
2
votes
1answer
328 views
general sync settings “auto-sync” checkbox programtically
I am looking for a way to enable/disable the "auto-sync" checkbox in the "general sync settings".
Afair the stock power control widget has this feature too. If this widget can do, there should be a ...
2
votes
1answer
174 views
Android SyncAdapter stuck in infinite sync loop
I'm writing an Android Sync Adapter and basically having a problem with it syncing in an infinite loop. As soon as the sync completes it starts all over again.
Thank you,
Regards,
Akshay
@Override
...
2
votes
1answer
319 views
Prevent network sync trigger when syncing from network in Android ContentProvider
I'm writing my own ContentProvider which will be synced to a web service using a SyncAdapter.
Problem happens when the sync adapter is modifying the content provider's data the provider triggers a ...
2
votes
3answers
600 views
ContentProvider won't show up in Data & Synchronization area
I'm trying to get a custom ContentProvider to show up under Data & synchronization, and I'm running into some problems. Namely, it's not showing up.
The specifics:
My AndroidManifest.xml has the ...
2
votes
1answer
660 views
How synchronization with SyncAdapter works on android?
If I need to start synchronization adhoc, I use requestSync. But looks like it doesn't work when setIsSyncable defined as false. How to initiate synchronization by user request in this case?
...
1
vote
1answer
71 views
Sync adapter definition
Although I have implemented sync adapters and I can describe what a sync adapter is, I wanted to find the definition of it.
I did not find it.
Here I found a description that is clear but it is not ...
1
vote
1answer
37 views
How can I add a category to my SyncAdapter
I have tried the great Google example to sync contact from a webservice and that work fine.
This is called the SampleSyncAdapter and really worth it: ...
1
vote
1answer
88 views
In Android, is there a way to prevent the stock contacts app from editing contacts in my custom sync adapter?
I've created a custom contacts sync adapter, and an app to to edit the contact data for the custom contacts. The stock app can't edit them anyway -- it would only allow editing of the name. I've also ...
1
vote
1answer
136 views
org.xmlpull.v1.XmlPullParserException: No android.content.SyncAdapter meta-data while starting the Application
I'm completely stuck here with this Exception. This Exception is completely slowing down the Application. And also i googled the Exception but no good results for me.
Pls any one help me on this.
...
1
vote
0answers
60 views
Android: Motorola XT720 Exchange Account Problem
I have an app published on Android Market that can save contacts to different accounts. This app allows users to choose an account to save a contact to. But a lot of Motorola users report that ...
1
vote
1answer
333 views
Starting just my sync immediately after adding Account to AccountManager?
I have dozen accounts in AccountManager and when add new account Android start synchornizing all accounts. Since there are a lot of them, takes at least 15 seconds to start my synchronization.
Is ...
1
vote
1answer
784 views
SQLite “database schema has changed” error in Content Provider
I'm using Content Providers and Sync Adapters for my synchronization routine.
My routine receives a JSONObject and insert or update the entry.
In order to decide if we are going to update or insert ...
1
vote
0answers
162 views
Presence status on custom contacts dissapears after short time
I made my own SyncAdatper to add contacts of my app to contacts on the phone.
Everything is working now (picture, status, custom action, etc) except for presence status.
According to google:
...
1
vote
2answers
280 views
How to signal sync-complete to the Android SyncManager?
I was using cancelRequest() from within my SyncAdapter, just before it exits its thread, but I then decided that was only intended to be used by another entity (UI) that wants to cancel a sync in ...
1
vote
2answers
163 views
How to understand if synchronization was started automatically or manually on android?
I use SyncAdapter in my application. So, synchronization can be either automatic (addPeriodicSync) or started manually (requestSync).
How can I know in the process of synchronization how it was ...
1
vote
1answer
731 views
How to define frequency of SyncAdapter updates on android?
ContentProvided defined for synchronization is dummy (in accordance with this approach).
1
vote
1answer
329 views
Android Account Sync giving me a class not found error… but it shouldn't
I simply copied the code used in the sample sync app provided by Android (found here).
So it should work... but when I install it onto my phone I get the following error printed:
03-10 14:44:54.364: ...
1
vote
1answer
692 views
Why No android.content.SyncAdapter meta-data registering sync-adapter?
I am following the SampleSyncAdapter and upon startup, it appears that my SyncAdapter is not configured correctly. It reports an error trying to load its meta-data. How can I isolate the problem? ...
1
vote
2answers
1k views
How to code a “sync now” operation on Android?
I have a sync adapter for my DB and at certain points in the application usage, it needs to sync the DB now. I would like to trigger the sync adapter as if its sync-time popped and then re-establish ...
1
vote
1answer
2k views
No Activity found to handle Intent { act=android.accounts.AccountAuthenticator } even though I have one
I'm trying to have my application display my login activity when a user selects "Add account" in "Accounts & Sync" or wants to use the application and isn't logged in yet. I've followed ...
0
votes
0answers
19 views
Android SyncAdapter Callback
I have implemented a SyncAdapter, AccountManager and private ContentProvider along the lines of the SimpleSyncAdapter sample project in the SDK. It is all working well.
Now I want to show a message ...
0
votes
1answer
69 views
Use case of Android Sync-Adapter
From here,
A Contact joins multiple raw contacts into one aggregate. This is what
the user perceives as a real contact in the People and Phone apps.
A sync adapter synchronizes its raw ...
0
votes
0answers
33 views
Android SyncAdapter / Account Manager Resources
I'm looking for some resources(books, online guides, etc.) for implementing an account manager / syncadapter in android. I foudn this , and I get it at a high level, but I was looking more for a ...
0
votes
1answer
38 views
How to synchronize client ids from different devices (android, iphone etc) and backend server ids
I am syncing using syncadpter, custom content provider, account manager services. I am a bit stuck with the synchronization implementation. I have been greatly helped by the Sample SyncAdapter example ...
0
votes
1answer
40 views
what is sync_extras_upload used for?
Within the ContentResolver class, there are several constants that are used for syncadpaters. I want to know what the constant SYNC_EXTRAS_UPLOAD is used for?
0
votes
1answer
112 views
How to correctly use AsyncTask during SyncAdapter onPerformSync
I have been receiving a large number of bug reports from users reported from force close dialogs that state something like the following:
java.lang.ExceptionInInitializerError
at ...
0
votes
1answer
43 views
Navigate to account settings for a specific SyncAdapter account?
I want to open up the account settings for a specific SyncAdapter account. Is there an action and/or URI that can be passed into an Intent to navigate to this activity?
It seems like it'd be ...
0
votes
0answers
60 views
Disallow multiple accounts in AccountManager
I've implemented my AccountManager authenticator and the service and the whole deal and it all seems to be working fine.
There is, however, one little problem: I only want a single account for my app ...
0
votes
0answers
67 views
ContactsContract.RawContacts.SYNC2 is always null on real device, works fine on SDK emulator
I'm writing a SyncProvider based on Sam Steele's demo.
However, I ran into a major problem. I write timestamps into the ContactsContract.RawContacts.SYNC2 field. On the SDK emulator, this works just ...
0
votes
1answer
62 views
SampleSyncAdapter Breakpoints Not Working
I'm using Eclipse to learn how the SampleSyncAdapter example works. I can't get my breakpoints to work. I set a breakpoint in multiple locations but none get hit. For example, ...
0
votes
2answers
129 views
SyncAdapter Without an Account
I'm trying to create a SyncAdapter for my Android app to show YouTube videos from one specific channel. The videos are public domain so I don't want the user to login, create an account, ...
0
votes
1answer
179 views
What are Android SyncAdapter contentAuthority and accountType?
I'm creating a custom Android SyncAdapter and hit a snag following the SampleSyncAdapter.
I'm creating my equivalent of the xml/syncadapter.xml
Here's the parts I'm confused about:
...
0
votes
1answer
58 views
One Way Android SyncAdapter For Public Domain Info
I'm working on adding a YouTube channel to my Android App and I'm having difficulty figuring out how to go about doing this. I'm currently learning about SyncAdapters by looking at the Android ...
0
votes
1answer
60 views
Adding a new account on android restricted the number of contact fields
After running SampleSyncAdapter, a new account was created successfully and I was able to sync my contacts with the server but when I added a new contact it showed me only two fields i.e first name ...
0
votes
1answer
143 views
Android SyncAdapter Server-side Implementation
I have read a lot of tutorials on Sync Adapter such as the tutorial on http://www.c99.org/2010/01/23/writing-an-android-sync-provider-part-1 as well as the SampleSyncAdapter sample code on Android ...
0
votes
1answer
36 views
Is Syncadapter called in phone's sleep mode?
I wonder if syncadapter in Android is called even if the phone is in sleep mode.
0
votes
2answers
198 views
open an activity to edit contact in sync adapter
In the Android SampleSyncAdapter there is the following piece of code:
/**
* Adds a profile action
*
* @param userId the userId of the sample SyncAdapter user object
* @return instance of ...
0
votes
1answer
201 views
Android Sync Adapter remove add account function from Applications & sync options screen
When I created my application using a sync adapter, I noticed that you can add an account in the "Applications & Sync" menu in Settings. I want my application to have only one account per device, ...