Provides basic structure for platform to connect to the carrier messaging service.
CarrierMessagingServiceManager carrierMessagingServiceManager =
new CarrierMessagingServiceManagerImpl();
if (carrierMessagingServiceManager.bindToCarrierMessagingService(context, carrierPackageName)) {
// wait for onServiceReady callback
} else {
// Unable to bind: handle error.
}
Upon completion {@link #disposeConnection} should be called to unbind the
CarrierMessagingService. |