• Home
Name Date Size #Lines LOC

..--

java/com/android/libraries/entitlement/04-Jul-2025-9,7904,855

tests/04-Jul-2025-4,1573,316

Android.bpD04-Jul-20253.5 KiB123115

OWNERSD04-Jul-202556 43

PREUPLOAD.cfgD04-Jul-2025107 32

README.mdD04-Jul-2025892 3622

TEST_MAPPINGD04-Jul-202579 87

coverage.shD04-Jul-20252.9 KiB9359

lint-baseline.xmlD04-Jul-20252.4 KiB4843

README.md

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