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.
是否可以找到创建 Android 应用程序的实际日期?我有各种经过逆向工程的 APK,因此可以像 AndroidManifest 一样查看源代码。我目前拥有的唯一日期是通过 Linux 中每个属性的修改日期。
像这样的东西:
String mVersion = this.getPackageManager().getPackageInfo( "com.yourapppackage", 0).versionName;
干杯