- 浏览: 33481 次
-
文章分类
最新评论
Xamarin 平台:
Compilation
我们先看一下官网的描述:
The C# source makes its way into a native app in very different ways on each platform:
iOS – C# is ahead-of-time (AOT) compiled to ARM assembly language. The .NET framework is included, with unused classes being stripped out during linking to reduce the application size. Apple does not allow runtime code generation on iOS, so some language features are not available (see Xamarin.iOS Limitations ).
Android – C# is compiled to IL and packaged with MonoVM + JIT’ing. Unused classes in the framework are stripped out during linking. The application runs side-by-side with Java/ART (Android runtime) and interacts with the native types via JNI (see Xamarin.Android Limitations ).
Windows Phone – C# is compiled to IL and executed by the built-in runtime, and does not require Xamarin tools. Designing Windows Phone applications following Xamarin’s guidance makes it simpler to re-use the code on iOS and Android.
先学习下Android的编译过程,可以对比下java语言开发的Android应用程序:
java开发的Android应用程序编译执行过程:
Java ---(JavaC)----> .class ---> JVM load class ---> main 方法执行
Xamarin平台C#应用程序编译执行过程:
C#(.cs文件) ---(C# complier)---> IL ---> MonoVM + JIT execute
C# complier:
gmcs: compiler to target the 2.0 mscorlib.
smcs: compiler to target the 2.1 mscorlib, to build Moonlight applications.
dmcs: compiler to target the 4.0 mscorlib.
Xamarin 编译打包可执行程序:
先看一下官网介绍:
The Xamarin.Android build process is based on MSBuild, which is also the project file format used by Xamarin Studio and Visual Studio. * Ordinarily users will not need to edit the MSBuild files by hand* - the IDE creates fully functional projects and updates them with any changes made, and automatically invoke build targets as needed.
Advanced users may wish to do things not supported by the IDE's GUI, so the build process is customisable by editing the project file directly. This page documents only the Xamarin.Android-specific features and customizations - many more things are possible with the normal MSBuild items, properties and targets.
Windows 使用MSBuild, OS X 使用xbuild
Windows编译打包:
1. 确保环境已安装好 Visual Studio, Mono for Android SDK等
2. 在Xamarin创建的工程目录里找到后缀为csproj 的文件 XXX.csproj
3. 找到Mono提供的MSBuild.exe
备注:以下是我寻找到的方法:打开 XXX.csproj 寻找 <Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
在文件夹里搜索 Xamarin.Android.CSharp.targets 搜索到在MSBuild同级目录里找到了 C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe
4. 打开命令行,执行命令编译打包:
"C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe" /t:SignAndroidPackage Path\To\Your\XXX.csproj
打包完成后可以看到工程的\bin\Debug 文件夹下找到签名和未签名的apk
如果需要打包Release版本可以加上字段 /p:Configuration=Release
参考链接:
Xamarin guide
https://developer.xamarin.com/guides/cross-platform/application_fundamentals/building_cross_platform_applications/part_1_-_understanding_the_xamarin_mobile_platform/
https://developer.xamarin.com/guides/android/under_the_hood/build_process/
MSBuild 命令:
https://msdn.microsoft.com/en-us/library/ms164311.aspx
- C# language – 使用C#语言构建应用程序
- Mono .NET framework – 微软的跨平台框架
- Compiler – 根据不同平台生成不同产品的编译器
- IDE tools – 集成开发环境,包含了创建,构建,部署,编译等。
Compilation
我们先看一下官网的描述:
The C# source makes its way into a native app in very different ways on each platform:
iOS – C# is ahead-of-time (AOT) compiled to ARM assembly language. The .NET framework is included, with unused classes being stripped out during linking to reduce the application size. Apple does not allow runtime code generation on iOS, so some language features are not available (see Xamarin.iOS Limitations ).
Android – C# is compiled to IL and packaged with MonoVM + JIT’ing. Unused classes in the framework are stripped out during linking. The application runs side-by-side with Java/ART (Android runtime) and interacts with the native types via JNI (see Xamarin.Android Limitations ).
Windows Phone – C# is compiled to IL and executed by the built-in runtime, and does not require Xamarin tools. Designing Windows Phone applications following Xamarin’s guidance makes it simpler to re-use the code on iOS and Android.
先学习下Android的编译过程,可以对比下java语言开发的Android应用程序:
java开发的Android应用程序编译执行过程:
Java ---(JavaC)----> .class ---> JVM load class ---> main 方法执行
Xamarin平台C#应用程序编译执行过程:
C#(.cs文件) ---(C# complier)---> IL ---> MonoVM + JIT execute
C# complier:
gmcs: compiler to target the 2.0 mscorlib.
smcs: compiler to target the 2.1 mscorlib, to build Moonlight applications.
dmcs: compiler to target the 4.0 mscorlib.
Xamarin 编译打包可执行程序:
先看一下官网介绍:
The Xamarin.Android build process is based on MSBuild, which is also the project file format used by Xamarin Studio and Visual Studio. * Ordinarily users will not need to edit the MSBuild files by hand* - the IDE creates fully functional projects and updates them with any changes made, and automatically invoke build targets as needed.
Advanced users may wish to do things not supported by the IDE's GUI, so the build process is customisable by editing the project file directly. This page documents only the Xamarin.Android-specific features and customizations - many more things are possible with the normal MSBuild items, properties and targets.
Windows 使用MSBuild, OS X 使用xbuild
Windows编译打包:
1. 确保环境已安装好 Visual Studio, Mono for Android SDK等
2. 在Xamarin创建的工程目录里找到后缀为csproj 的文件 XXX.csproj
3. 找到Mono提供的MSBuild.exe
备注:以下是我寻找到的方法:打开 XXX.csproj 寻找 <Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
在文件夹里搜索 Xamarin.Android.CSharp.targets 搜索到在MSBuild同级目录里找到了 C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe
4. 打开命令行,执行命令编译打包:
"C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe" /t:SignAndroidPackage Path\To\Your\XXX.csproj
打包完成后可以看到工程的\bin\Debug 文件夹下找到签名和未签名的apk
如果需要打包Release版本可以加上字段 /p:Configuration=Release
参考链接:
Xamarin guide
https://developer.xamarin.com/guides/cross-platform/application_fundamentals/building_cross_platform_applications/part_1_-_understanding_the_xamarin_mobile_platform/
https://developer.xamarin.com/guides/android/under_the_hood/build_process/
MSBuild 命令:
https://msdn.microsoft.com/en-us/library/ms164311.aspx
发表评论
-
android页面布局 中间的listView填充剩余部分
2016-12-05 17:29 685<?xml version="1.0" ... -
Eclipse Memory Analyzer 分析内存溢出
2016-10-19 11:37 0一 安装篇 1. eclipse 自 ... -
微信聊天左滑显示删除实现
2016-04-06 18:04 913参考http://blog.csdn.net/xiaanmin ... -
Handler Thread
2016-03-21 16:42 488介绍 首先我们来看看为什么我们要使用HandlerThread ... -
Android Handler 作用
2016-03-21 15:31 418Android handler 作用: 什 ... -
Android UI 线程和子线程通信
2016-03-18 18:24 0从主线程发送消息到子 ... -
数据库升级
2016-03-07 17:09 0转自: http://892848153.iteye.com/ ... -
Android ListView 问题汇总
2016-01-11 11:16 539Listview 问题汇总: 1. it ... -
Intent与Activity启动模式相关的Flag
2015-11-27 16:08 425网上对于 Intent 的 flag 做了很多介绍,都 ... -
android 让一个控件按钮居于底部的几种方法
2015-04-09 15:00 0android 让一个控件按钮居于底部的几种方法 1.采用li ... -
Service 理解
2015-03-11 19:08 01. Service 也是运行在主线程,和Activity级别 ... -
回调 同步 异步
2014-12-16 17:34 0回调 同步 异步 -
JSON
2014-12-16 17:33 0JSON 的使用场景 -
远程service
2014-12-16 17:32 0远程Service使用场景: 1. 远程Service-- ... -
Android 实现两个控件分别靠左侧边缘和右侧边缘,且不重叠
2014-12-11 16:02 41201. 使用relativeLayout 从右侧往左侧加,但是问 ... -
Android系统源码数据库(mmssms.db)(转)
2013-11-18 17:00 935论Android系统源码数据库(mmssms.db)中几个表之 ... -
Android SMS 数据库
2013-11-18 14:57 845$ adb shell $ cd data/data $ cd ... -
PC 操作Android手机
2013-11-15 18:10 642https://code.google.com/p/andro ... -
下载Android source 问题
2013-10-17 10:34 679fatal: '../platform/abi/cpp.git ... -
查看Android数据库
2013-03-19 15:26 6471. adb shell; 2. cd data/data 3 ...
相关推荐
8. **自动化打包**:为了实现自动化打包,可以编写脚本或利用Visual Studio的MSBuild命令行工具。在脚本中指定项目路径、输出目录、签名信息等参数,运行脚本即可完成自动打包。 9. **测试与部署**:打包完成后,应...
在这个例子中,`xbuild`是用于构建Xamarin项目的命令行工具,`/t:PackageForAndroid`目标会创建APK文件。 最后,为了运行NAnt脚本,只需在命令行中输入`nant`,并指定要执行的目标,如`nant compile package`。 ...
批处理文件的内容可能包括设置环境变量、导航到特定目录、调用MSBuild或其他编译工具来重建解决方案,确保开发者可以快速地获取到修复后或更新的示例代码。 其次,"ReplPKTDemos.exe"可能是一个可执行文件,用于...
9. **MSBuild**: 微软的构建工具,用于编译C#项目和解决依赖关系。随着.NET Core的发展,dotnet CLI逐渐取代了部分MSBuild的功能。 10. **Unity**: 一个流行的跨平台游戏引擎,支持C#脚本,广泛应用于游戏开发、...
一个命令行实用程序 + MSBuild 任务,用于启用条件编译,如 XAML 文件中的指令。 兼容 Visual Studio 2010+ 和 Xamarin Studio。 为什么? 在 Windows Phone、Windows 8 和 10 应用程序之间共享 UI 代码 使用条件...