Question:Which of the following procedures will get the package name of an APK file?
A Looking for the package attribute's value of the <manifest> element in the manifest file.
B Executing the command, "pm list packages -f", in the ADB shell.
C Programmatically, using PackageManager in an installed Android app.
D Using the AAPT platform tool, "aapt dump badging apkName.apk".
+ AnswerC
+ Report