在没有 Adobe Air 的 Android 中安装 Air 应用程序
我开发了一个 Adobe Air 应用程序,我发现我尝试安装该应用程序的移动设备与 Adobe Air 支持的设备不兼容,因为它尚未启动。 那么,我该如何解决这个问题呢?
我有一些想法:
- 是否可以更改手机名称以伪造另一台设备,并且 Adobe Air 不拒绝安装?
- 可以将 AIR 转换为 Java 吗?
- 可以在没有 Java 的情况下运行 Air 吗?
- 放弃 Flash,用 Java 或 Javascript 来实现。
谢谢!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从 AIR 3.0 开始,您可以在 Android 上使用 Captive Runtime,就像在 iOS 上一样。这样您就不需要安装 AIR,因为运行时将捆绑在应用程序中。
如果您使用的是 Flash Builder,请查看此链接:Air 3.0 中的强制运行时打包。
如果没有,请按照以下步骤操作:安装和部署Adobe AIR 3 中的选项
You can use Captive Runtime on Android since AIR 3.0, just like on iOS. That way you won't need to have AIR installed as the runtime will be bundled within the app.
If you're using Flash Builder, check out this link : Captive Runtime packaging in Air 3.0.
If not, follow this one instead : Installation and deployment options in Adobe AIR 3
1-我没有得到第一部分,但如果你想在 ios 和 bb 上运行应用程序,你必须将其编译为内核映射的原因
2-你无法将 AIR 转换为 JDK,但你可以调用 java 方法在adobe air中使用BlazeDS,如果你是专业的java程序员,你可以使用java FX(不确定你是否可以在手机上运行它)
3-adobe AIR是一个独立的平台,你不需要有java来运行Air , 还您可以在 AIR 应用程序中嵌入 AIR vm,因此用户无需在移动设备上安装 AIR vm,请查看
http://tv.adobe.com/watch/learn-flash-professional-cs6-/creating-a-prepackaged-air-app/
4- javascript 不能做actionscript 能做的事情无论如何,有 HTM5 可以让你的应用程序在 HTML 上活跃起来,还有微软的 TypeScript 作为 JavaScript 的替代品。
1-i didn't get the first part, but if you mean to run app on ios and bb, you have to compile it to both cause of kernel mapping
2- you can't convert AIR to JDK but u can invoke java methods in adobe air using BlazeDS, instead if u are a professional java programmer you may use java FX(not sure if u can run it on mobiles)
3-adobe AIR is an independent platform, you don't need to have java to run Air, also u can embed AIR vm in your AIR app, so user doesn't has to install AIR vm on mobile check out
http://tv.adobe.com/watch/learn-flash-professional-cs6-/creating-a-prepackaged-air-app/
4- javascript can not do wht actionscript do, anyway there is HTM5 which can bring your app alive on HTML, there is TypeScript from microsoft as a replacement of javascript.