Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
private final Ola ola;                                                                                                  
private final OlaEmv emv;                                                                                               
private final OlaContactless contactless;
private final Dev dev;

this.ola = Ola.AccessLowLevel();
this.emv = OlaEmv.AccessLowLevel();
this.contactless = OlaContactless.AccessLowLevel();
this.dev = new Dev(this, this, this, false, "/data/data/<application_name>/"); /* internal storage path example */

(new Thread(this.dev)).start();

  • OLA component initialization (Ola.ola_initialize)

...