安裝完Xamarin後,編譯Android項目時,你會發現好長時間進度都不動,當你取消編譯後,會發現實際上是出錯了,就是因在Android項目在第一次編譯時要去google網站上下一個andorid sdk包,牆內又連不上,就卡在那了,解決辦法就是自已到國內的一些鏡像網站上(如:http://mirrors.opencas.cn/android/)下一個,如:android_m2repository_r29.zip, 而後解壓到任意目錄下,用mklink創建連接到C:\Users\{username}\AppData\Local\Xamarin\Android.Support.v4\23.3.0.0目錄下,名字叫content,如命今:android
cd Android.Support.Animated.Vector.Drawable\23.3.0.0 rmdir content mklink /j content ..\..\android_m2repository_r29 cd ..\..\ cd Android.Support.Design\23.3.0.0 rmdir content mklink /j content ..\..\android_m2repository_r29 cd ..\..\ cd Android.Support.v4\23.3.0.0 rmdir content mklink /j content ..\..\android_m2repository_r29 cd ..\..\ cd Android.Support.v7.AppCompat\23.3.0.0 rmdir content mklink /j content ..\..\android_m2repository_r29 cd ..\..\ cd Android.Support.v7.CardView\23.3.0.0 rmdir content mklink /j content ..\..\android_m2repository_r29 cd ..\..\ cd Android.Support.v7.MediaRouter\23.3.0.0 rmdir content mklink /j content ..\..\android_m2repository_r29 cd ..\..\ cd Android.Support.v7.RecyclerView\23.3.0.0 rmdir content mklink /j content ..\..\android_m2repository_r29 cd ..\..\ cd Android.Support.Vector.Drawable\23.3.0.0 rmdir content mklink /j content ..\..\android_m2repository_r29 cd ..\..\ cd Android.Support.Animated.Vector.Drawable\23.3.0.0 rmdir content mklink /j content ..\..\android_m2repository_r29 cd ..\..\
這樣再回到VS中編譯,就OK了。網站