I need to extract the strings that are stored in the strings.xml file. I've been able to use Androguard to get information from the manifest file but I haven't been able to find a way to extract the strings.
from androguard.core.bytecodes.apk import APK
from androguard.core import androconf
# Load the APK file
apk_file = "path/to/your/app.apk"
a = APK(apk_file)