Is there a way to get info from an Android .apk file? Info like packagename, app name and version number when I upload an apk to my own server or when its uploaded by using php, java or anything else?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, you can use apktool to get the AndroidManifest.xml file and extract the information you want.
An apk is actually just a zip file, you might want to try unzipping it first to see if the information you want is there before using additional tools.