Home | History | Annotate | Download | only in carrier

Lines Matching defs:service

15 package android.service.carrier;
18 import android.app.Service;
31 * A service that exposes carrier-specific functionality to the system.
33 * To extend this class, you must declare the service in your manifest file to require the
35 * filter with the {@link #CARRIER_SERVICE_INTERFACE}. If the service should have a long-lived
36 * binding, set <code>android.service.carrier.LONG_LIVED_BINDING</code> to <code>true</code> in the
37 * service's metadata. For example:
41 * <service android:name=".MyCarrierService"
45 * <action android:name="android.service.carrier.CarrierService" />
47 * <meta-data android:name="android.service.carrier.LONG_LIVED_BINDING"
49 * </service>
52 public abstract class CarrierService extends Service {
56 public static final String CARRIER_SERVICE_INTERFACE = "android.service.carrier.CarrierService";
92 * PersistableBundle} may be overridden by the system's default configuration service.