xarmain使用Forms编译android工程出现support_r19.0.1.zip支持包错误

第一次使用xarain下载Forms程序,提示一下错误.

C:Program Files (x86)MSBuildXamarinAndroidXamarin.Android.Common.targets(236,2): error XA5208: Download failed. Please download https://dl-ssl.google.com/android/repository/support_r19.0.1.zip and put it to the C:UsersAdminAppDataLocalXamarinAndroid.Support.v419.0.1 directory.


C:Program Files (x86)MSBuildXamarinAndroidXamarin.Android.Common.targets(236,2): error XA5208: Reason: 无法连接到远程服务器


C:Program Files (x86)MSBuildXamarinAndroidXamarin.Android.Common.targets(236,2): error XA5207: Please install package: 'Android Support Library' available in SDK installer. Java library file C:UsersAdminAppDataLocalXamarinAndroid.Support.v419.0.1contentsupport/v4/android-support-v4.jar doesn't exist.

看了一下android-sdk目录里面已经有support的版本了.于是在网上下载新一个support_r19.0.1.zip这个包的文件.

这个网址有很多不需要翻墙就能下载的谷歌链接地址

摘抄需要的部分

[cpp] view plaincopy在CODE上查看代码片派生到我的代码片
 
  1. Android Support Repository(extras/android/m2repository)  
  2. https://dl-ssl.google.com/android/repository/android_m2repository_r05.zip  
  3. https://dl-ssl.google.com/android/repository/android_m2repository_r06.zip  
  4. Android Support Library(extras/android/support)  
  5. https://dl-ssl.google.com/android/repository/support_r19.zip  
  6. https://dl-ssl.google.com/android/repository/support_r19.0.1.zip  
  7. https://dl-ssl.google.com/android/repository/support_r19.1.zip  
  8. https://dl-ssl.google.com/android/repository/support_r20.zip  
  9. Google AdMob Ads SDK(extras/google/admob_ads_sdk)  
  10. https://dl-ssl.google.com/googleadmobadssdk/googleadmobadssdkandroid-6.4.1.zip  
  11. Google Analytics App Tracking SDK(extras/google/analytics_sdk_v2)  
  12. https://dl.google.com/gaformobileapps/GoogleAnalyticsAndroid_1.4.2.zip  
  13. https://dl.google.com/gaformobileapps/GoogleAnalyticsAndroid_2.0beta4.zip  
  14. https://dl.google.com/gaformobileapps/GoogleAnalyticsAndroid_2.0beta4.1.zip  
  15. https://dl-ssl.google.com/android/repository/GoogleAnalyticsAndroid_2.0beta4.1.zip  
  16. https://dl.google.com/gaformobileapps/GoogleAnalyticsAndroid_2.0beta5.zip  
  17. https://dl.google.com/gaformobileapps/GoogleAnalyticsAndroid_2.0beta5.zip  
  18. [Deprecated]Google Cloud Messaging for Android Library(extras/google/gcm)  
  19. https://dl-ssl.google.com/android/repository/gcm_r03.zip  
  20. Google Play services for Froyo  
  21. https://dl-ssl.google.com/android/repository/google_play_services_3265130_r12.zip  
  22. Google Play services(extras/google/google_play_services)  
  23. https://dl-ssl.google.com/android/repository/google_play_services_4452030_r17.zip  
  24. Google Repository(extras/google/m2repository)  
  25. https://dl-ssl.google.com/android/repository/google_m2repository_r08.zip  
  26. Google Play APK Expansion Library(extras/google/play_apk_expansion)  
  27. https://dl-ssl.google.com/android/repository/market_apk_expansion-r03.zip  
  28. Google Play Billing Library(extras/google/play_billing)  
  29. https://dl-ssl.google.com/android/repository/play_billing_r05.zip  
  30. Google Play Licensing Library(extras/google/play_licensing)  
  31. https://dl-ssl.google.com/android/repository/market_licensing-r02.zip  
  32. Google USB Driver(extras/usb_driver)  
  33. https://dl-ssl.google.com/android/repository/usb_driver_r10-windows.zip  
  34. Google Web Driver(extras/google/webdriver)  
  35. https://dl-ssl.google.com/android/repository/webdriver_r02.zip  
  36. Intel x86 Emulator Accelerator(HAXM)(extras/intel/Hardware_Accelerated_Execution_Manager)  
  37. https://download-software.intel.com/sites/landingpage/android/extra_intel_haxm-windows_r03.zip  
  38. https://download-software.intel.com/sites/landingpage/android/extra_intel_haxm-macosx_r02.zip  
  39. https://dl-ssl.google.com/android/repository/extras/intel/haxm-windows_r04.zip  
  40. https://dl-ssl.google.com/android/repository/extras/intel/haxm-macosx_r04.zip  

只要下载support_r19.0.1.zip那个链接就可以了.用迅雷一下就下载完了。

然后按照出错提示将support_r19.0.1.zip整个文件,放到 C:UsersAdminAppDataLocalXamarinAndroid.Support.v419.0.1 目录下重新编译即可。

原文地址:https://www.cnblogs.com/zjoch/p/4601334.html