Install time for Android application?

后端 未结 3 922
迷失自我
迷失自我 2021-01-15 05:44

Is there any way to determine programmatically the time at which an Android application was installed? I don\'t see anything in PackageInfo, etc.

--EDIT-- To clarify

相关标签:
3条回答
  • 2021-01-15 06:10

    are you trying to find the time when YOUR app was installed, or other apps? If you are only interested in your own app, you can add functionality to your app that checks if this is the first time the app has been run. if it is, get the system time and save it in a file/database. then whenever you want it, you can open the file/query the database for it.

    Was this helpful?

    0 讨论(0)
  • 2021-01-15 06:17

    When you install/update a non-protected app, it's apk file gets written to /data/app/package.name.apk, confusingly referenced as sourceDir (from my answer) resetting the timestamp to the current one. That's it.

    0 讨论(0)
  • 2021-01-15 06:21

    Register a BroadcastReceiver for the corresponding Intent.

    0 讨论(0)
提交回复
热议问题