In a given case, a certain company does not want their app to be released on Google Play. However, the idea would be to create a version control within that company's own system to upload the .apk
and write some basic information to a database table. This information would be an id, versionCode
, versionName
, address URL saved from .apk
, and date of submission.
I would like to extract only versionCode
and versionName
from apk
at the time of uploading, so you do not have to type this manually at the time of the version registration.
How can I redeem versionCode
and versionName
from an APK?