android:了解我的应用程序的构建信息
有什么方法可以了解并显示我的应用程序的构建版本信息。我可以获得我的应用程序的版本。我想知道我的应用程序是在哪个平台上构建的,即 1.6、2.1 等。“Build.VERSION.RELEASE”为我提供了设备的构建版本。同样,无论设备信息如何,我都希望构建我的应用程序。
有办法实现这一点吗?
谢谢
Is there any way to know and show the build version info of my application. I can get version of my app. I want to know on which platform was my app build i.e. 1.6, 2.1 etc. "Build.VERSION.RELEASE" gives me the build of the device. Similarly I want build of my application regardless of the device info.
Is there a way to achieve this ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从
PackageManager
和getPackageInfo()
获取此信息。You can get this information from
PackageManager
andgetPackageInfo()
.