Home | History | Annotate | Download | only in sync-adapters

Lines Matching full:your

41     If the sync adapter framework tries to run your sync adapter, and your app doesn't have a
42 content provider, your sync adapter crashes.
55 content provider, add a stub content provider to your app. A stub provider implements the
61 If you already have a content provider in your app, you don't need a stub content provider.
65 plug your sync adapter into the framework.
69 To create a stub content provider for your app, extend the class
135 The sync adapter framework verifies that your app has a content provider by checking that your
151 A URI authority that identifies the stub content provider. Make this value your app's
152 package name with the string ".provider" appended to it. Even though you're declaring your
159 Determines whether other apps can access the content provider. For your stub content
170 setIsSyncable()} in your code. The flag allows the sync adapter framework to make data
201 create the component that encapsulates your data transfer code. This component is called a
202 sync adapter. The next lesson shows you how to add this component to your app.