在iOS和Android上的AS3中找到我的航空应用程序版本

前端之家收集整理的这篇文章主要介绍了在iOS和Android上的AS3中找到我的航空应用程序版本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Air中是否有as3 API(我使用3.2)来访问我的应用程序版本?我在App Store或 Android Market上发布的那个?

解决方法

是的,你可以直接从应用程序xml描述符中提取它.像这样的东西应该工作:
var descriptor:XML = NativeApplication.nativeApplication.applicationDescriptor;
var ns:Namespace = descriptor.namespace();
var version:String = descriptor.ns::version[0];
原文链接:https://www.f2er.com/iOS/332536.html

猜你在找的iOS相关文章