• BlackBerry Dynamics
  • Runtime library for Android applications
  • 12.0.1.79
GDIccReceivingActivity Class Reference

Inter-Container Communication receiving activity for backward compatibility. More...

Inheritance diagram for GDIccReceivingActivity:
Activity

Description

Extend this class to create an Inter-Container Communication receiving activity class in the application code. An Inter-Container Communication (ICC) receiving activity class shouldn't generally be created in the code of applications being built with the current version of the BlackBerry Dynamics SDK for Android. This class is provided for backward compatibility only.

See also
The icc package reference for how to use AppKinetics for secure inter-container communication in the current version of the BlackBerry Dynamics SDK for Android.

Backward Compatibility

BlackBerry Dynamics applications built with some earlier releases of the SDK for Android had to have the full name of the ICC receiving activity registered as the native application identifier. See under Service Provider Requirements in the icc package reference for details of service provider registration. Those applications will require an ICC receiving activity in their code.

If an ICC receiving activity is required:

  • The activity must be declared as a subclass of this class.
  • The activity must have no code of its own, i.e. it must be an empty subclass.
  • The activity must be configured in the AndroidManifest.xml file.

The following snippet illustrates correct usage of this class to implement an ICC receiving activity in the application source code.

package com.example.your.application.package;
import com.good.gd.GDIccReceivingActivity;
public class IccReceivingActivity extends GDIccReceivingActivity {}

The class is an empty subclass of GDIccReceivingActivity.