android 的 aot(提前)可用于单声道吗?
Is aot (ahead of time) available for mono for android?
我发现了这个:
Is AOT (ahead of time) compilation available (or planned) in mono for android?
然而这个问题很老了。
在单声道项目页面上,我看到 AOT 支持 ARM,但没有关于 Android。
Android现在可以使用 AOT 吗?
是的,在商业版中(Monodriod 现在是 Xamarin.Andriod)有一个选项可以像 Xamarin 对 iOS 所做的那样 AOT 编译您的 Andriod 程序集(这是 Apple 商店的强制要求提交):
The AOT Compilation option enables Ahead-of-Time (AOT) compilation of
assemblies. When this option is enabled, Just In Time (JIT) startup
overhead is minimized by precompiling assemblies before runtime. The
resulting native code is included in the APK along with the uncompiled
assemblies. This results in shorter application startup time, but at
the expense of slightly larger APK sizes.
Note that the AOT Compilation option is currently a preview feature
and requires a Business license or higher. AOT compilation is
available only when the project is configured for Release mode, and it
is disabled by default.
我发现了这个: Is AOT (ahead of time) compilation available (or planned) in mono for android?
然而这个问题很老了。
在单声道项目页面上,我看到 AOT 支持 ARM,但没有关于 Android。
Android现在可以使用 AOT 吗?
是的,在商业版中(Monodriod 现在是 Xamarin.Andriod)有一个选项可以像 Xamarin 对 iOS 所做的那样 AOT 编译您的 Andriod 程序集(这是 Apple 商店的强制要求提交):
The AOT Compilation option enables Ahead-of-Time (AOT) compilation of assemblies. When this option is enabled, Just In Time (JIT) startup overhead is minimized by precompiling assemblies before runtime. The resulting native code is included in the APK along with the uncompiled assemblies. This results in shorter application startup time, but at the expense of slightly larger APK sizes.
Note that the AOT Compilation option is currently a preview feature and requires a Business license or higher. AOT compilation is available only when the project is configured for Release mode, and it is disabled by default.