Parallel measurement IOMb & IOMp/ÖWA¶
The IOMB Lib Android supports parallel operation of sessions of the following measurement systems:
- IOMb/Census (IOMb Library Android).
- IOMp/SZM (INFOnline Library Android)
- ÖWA (INFOnline Library Android)
In the following, it will be shown how the measurements of IOMB as well as IOMp(SZM) and ÖWA can be operated simultaneously.
The prerequisite for this is an integration of the following libraries in your Android app project:
- IOMB Library Android (see Integration of IOMbLib Android).
- INFOnline Library Android (s. Integration of SZM-Lib Android).
Session Init: Creation of session setup/configuration for IOMb, SZM and ÖWA and initialization of all three sessions.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
|
Event Logging: Events can be logged in all measurement systems in parallel, e.g. the call of a view:
1 2 3 4 5 6 |
|
Parallel hybrid measurement IOMb & IOMp (or/and ÖWA)¶
Attention
To enable parallel hybrid measurement of IOMb and IOMp/ÖWA, it is mandatory to continue using class IOLWebView
(from INFOnline Library Android).
In order to activate the IOMb hybrid measurement, an instance of type IOMBHybridBridge
has to be created and method configureWebViewForIOMbHybridMeasurement
called on that instance.
The IOLWebView
instance should be passed as a parameter here:
Kotlin:
1 2 3 4 |
|
Java:
1 2 3 4 |
|