Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要获取特定用户在当前设备上从 google play 安装的应用程序的原始安装日期/时间。
我可以从包管理器获得最后安装日期,但不能从 google play ervices 获得原始安装日期。
请帮我。
先谢谢了。
从 API 9+:
long installed = context.getPackageManager().getPackageInfo("package.name", 0).firstInstallTime;
抱歉,没有可用于检索此信息的方法或 API。
如果它是付费应用程序,您可以运行自己的服务器,每当在您的商家帐户中购买此应用程序时,该服务器就会进入数据库,然后从您的服务器检索日期和时间。