外部化应用程序版本信息

发布于 2024-12-08 00:25:49 字数 149 浏览 0 评论 0原文

我希望我的应用程序的预加载器显示 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

反差帅 2024-12-15 00:25:49

我通常对此数据使用编译器常量,因为它在构建时可用,并且可以轻松地融入到应用程序中。

-define+=CONFIG::VERSION "1.0.1-a"

private static const version:String = CONFIG::VERSION;


<s:Label text="{version}" />

I typically use compiler constants for this data, as it's available at build time, and can be easily baked into the app.

-define+=CONFIG::VERSION "1.0.1-a"

private static const version:String = CONFIG::VERSION;


<s:Label text="{version}" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文