I am currently working on an MDM (Mobile Device Management) Application that utilizes the Android Management API. I have successfully enrolled my devices and obtained some application details such as SDK version and app versions by using on node js.
// Fetch the application details
const appDetails = await androidmanagement.enterprises.applications.get({
name: `enterprises/${enterpriseName}/applications/${packageName}`,
auth: client,
});
console.log(appDetails.data)
i refer this link
However, I am facing challenges in retrieving the following details:
1.App Installed on devices
2.Build Number
3.Release Tag
4.install app File Size
I have thoroughly reviewed the documentation and explored various approaches, but I haven't been able to find a solution for these specific details. Therefore, I am reaching out to seek your expertise and assistance in resolving this matter.
If you could kindly guide me on how to obtain the above-mentioned application details through the Android Management API or provide any relevant code examples, it would be greatly appreciated.