onStart

public void onStart()

Mirrors the Activity Lifecycle method (@see Activity#onStart()) Consumers of this class should call this method in their activity's "onStart()" method:

  public class CloverLoyaltyCustomActivity extends Activity {
      private CloverCFPLoyaltyHelper cloverCFPLoyaltyHelper;
      ...
      protected void onStart() {
          super.onStart();
          cloverCFPLoyaltyHelper.onStart();
      }
      ...
  }

Since

4.1.0