I've started to read about the AndroidManifest.xml
file and the network_security_config.xml
.
So if I want to include the network_security_config.xml
then I use this:
android:networkSecurityConfig="@path/to/config"
Yesterday I reversed a APK and inspected the AndroidManifest.xml
.
The file-path to the network_security_config.xml
is /res/xml
so if I thinking right, the Path in the AndroidManifest.xml
should look like this:
android:networkSecurityConfig="@res/xml/network_security_config"
instead I've found this:
android:networkSecurityConfig="@7F140000"
What does this number mean and how is it build? Is this some sort of obfuscation? If not: for what is it used?
Kind regards,
Tyr