外部化应用程序版本信息
我希望我的应用程序的预加载器显示 XML 文件中的版本/构建信息。显然,预加载器无法获取它,因为它正在等待 XML 文件加载。是否有另一种方法可以用来外部化我的版本/构建信息并确保它尽早出现在我的应用程序中?
任何提示都是有帮助的并且非常感谢。
谢谢!
I want my app's preloader to display version/build info that I have in an XML file. Obviously, the preloader can't pick it up because it waits for XML file to load. Is there another approach that I can use to externalize my version/build info and ensure it's in my app early?
Any tips are helpful and very appreciated.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通常对此数据使用编译器常量,因为它在构建时可用,并且可以轻松地融入到应用程序中。
I typically use compiler constants for this data, as it's available at build time, and can be easily baked into the app.