Home | History | Annotate | Download | only in work

Lines Matching full:your

38   This guide shows how to implement these configuration settings in your app.
56 changed by a managed configuration provider. If your app is running on an
58 can change your app's managed configuration.
65 configuration provider app. That app, in turn, changes the configurations on your app.
73 <li>Declare the managed configurations in your app manifest. Doing
80 managed configurations, and change your app's UI and behavior to
88 the current managed configurations are, and make any necessary changes to your
98 Your app can support any managed configuration you want to define. You declare the
101 apps to examine the managed configurations your app provides. Enterprise Mobility
102 Management (EMM) partners can read your app's configurations by using Google
107 To define your app's remote configuration options, put the following element
108 in your manifest's
118 Create a file named <code>app_restrictions.xml</code> in your app's
128 managed configuration file. Your app is only allowed to have a
130 consistent for your app in all locales.
136 administrators, so the administrators can remotely configure your
141 For example, suppose your app can be remotely configured to allow or forbid
142 it to download data over a cellular connection. Your app could have a
184 change your app's managed configurations at any time, even when the
193 Your app is not automatically notified when other apps change its
195 configurations are when your app starts or resumes, and listen for a
196 system intent to find out if the configurations change while your
201 To find out the current configuration settings, your app uses a
202 {@link android.content.RestrictionsManager} object. Your app should
250 know the current configuration. Instead, you should call it once when your app
254 change while your app is active, as described in
284 It is up to your app to take appropriate action based on the current
285 managed configuration settings. For example, if your app has a
315 ACTION_APPLICATION_RESTRICTIONS_CHANGED} intent. Your app has to listen for
340 // Check current configuration settings, change your app's UI and
348 <strong>Note:</strong> Ordinarily, your app does not need to be notified
350 your broadcast receiver when the app is paused. When the app resumes, you
353 your broadcast receiver to make sure you're notified about configuration changes