• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Service Entitlement
2
3Service entitlement library exports the APIs for querying the service status, based on GSMA TS.43
4spec.
5
6## How to debug
7
8This lib produces logcat with log tag `ServiceEntitlement`.
9
10###  Enable logging the raw HTTP request / response / headers
11
12Such log is not enabled by default since it contains sensitive device identifiers.
13
14To enable, set the system property below, with **ROOT**:
15
16NOTE This is only supported on devices of userdebug builds.
17
18```shell
19adb root
20adb shell setprop dbg.se.pii_loggable true
21```
22
23### EAP-AKA auth test
24
25For testing purpose, it may be helpful to make the device under test return a specified
26response to EAP-AKA challenge.
27
28To do so, set the system property below, with **ROOT**:
29
30NOTE This is only supported on devices of userdebug builds.
31
32```shell
33adb root
34adb shell setprop persist.entitlement.fake_eap_aka_response <response>
35```
36