how to print a specified parameter when using aapt dump
问题 I saw here that the command aapt dump badging foo.apk prints all the details of the specified package. Is it possible to print any one property, say sdkversion? Something like aapt dump badging -sdkversion foo.apk P.S I'm using command prompt in windows. EDIT I am trying to store the package name in a variable. As of now, I have this code @echo off for /f "delims=" %%a in ('aapt dump badging foo.apk') do ( REM each line of the output ) I am able to retrieve each line of the output. Now I have