Issue
Is there are way to find out the "Date when an application was installed" on an Android Device.
Have searched extensively, but unable to find relevant answer.
Was unable to find anything regarding Date when Application was Installed through PackageManager
documentation/Code.
Solution
or this one (API Level 9 upwards!):
long installed = context
.getPackageManager()
.getPackageInfo(context.getPackageName(), 0)
.firstInstallTime
;
Answered By - Martin Matysiak
Answer Checked By - Robin (JavaFixing Admin)