import-summary.txt 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. ECLIPSE ANDROID PROJECT IMPORT SUMMARY
  2. ======================================
  3. Risky Project Location:
  4. -----------------------
  5. The tools *should* handle project locations in any directory. However,
  6. due to bugs, placing projects in directories containing spaces in the
  7. path, or characters like ", ' and &, have had issues. We're working to
  8. eliminate these bugs, but to save yourself headaches you may want to
  9. move your project to a location where this is not a problem.
  10. /Users/ray/Documents/code_ERPSuiteAndroid/Apex Mobile
  11. -
  12. Manifest Merging:
  13. -----------------
  14. Your project uses libraries that provide manifests, and your Eclipse
  15. project did not explicitly turn on manifest merging. In Android Gradle
  16. projects, manifests are always merged (meaning that contents from your
  17. libraries' manifests will be merged into the app manifest. If you had
  18. manually copied contents from library manifests into your app manifest
  19. you may need to remove these for the app to build correctly.
  20. Ignored Files:
  21. --------------
  22. The following files were *not* copied into the new Gradle project; you
  23. should evaluate whether these are still needed in your project and if
  24. so manually move them:
  25. * .DS_Store
  26. * ic_launcher-web.png
  27. * proguard/
  28. * proguard/.svn/
  29. * proguard/.svn/entries
  30. * proguard/.svn/text-base/
  31. * proguard/.svn/text-base/dump.txt.svn-base
  32. * proguard/.svn/text-base/mapping.txt.svn-base
  33. * proguard/.svn/text-base/seeds.txt.svn-base
  34. * proguard/.svn/text-base/usage.txt.svn-base
  35. * proguard/dump.txt
  36. * proguard/mapping.txt
  37. * proguard/seeds.txt
  38. * proguard/usage.txt
  39. Replaced Jars with Dependencies:
  40. --------------------------------
  41. The importer recognized the following .jar files as third party
  42. libraries and replaced them with Gradle dependencies instead. This has
  43. the advantage that more explicit version information is known, and the
  44. libraries can be updated automatically. However, it is possible that
  45. the .jar file in your project was of an older version than the
  46. dependency we picked, which could render the project not compileable.
  47. You can disable the jar replacement in the import wizard and try again:
  48. android-support-v4.jar => com.android.support:support-v4:19.1.0
  49. Replaced Libraries with Dependencies:
  50. -------------------------------------
  51. The importer recognized the following library projects as third party
  52. libraries and replaced them with Gradle dependencies instead. This has
  53. the advantage that more explicit version information is known, and the
  54. libraries can be updated automatically. However, it is possible that
  55. the source files in your project were of an older version than the
  56. dependency we picked, which could render the project not compileable.
  57. You can disable the library replacement in the import wizard and try
  58. again:
  59. google-play-services_lib => [com.google.android.gms:play-services:+]
  60. Moved Files:
  61. ------------
  62. Android Gradle projects use a different directory structure than ADT
  63. Eclipse projects. Here's how the projects were restructured:
  64. * AndroidManifest.xml => app/src/main/AndroidManifest.xml
  65. * assets/ => app/src/main/assets
  66. * libs/baidumapapi_base_v3_7_1.jar => app/libs/baidumapapi_base_v3_7_1.jar
  67. * libs/baidumapapi_map_v3_7_1.jar => app/libs/baidumapapi_map_v3_7_1.jar
  68. * libs/httpmime-4.1.1.jar => app/libs/httpmime-4.1.1.jar
  69. * lint.xml => app/lint.xml
  70. * proguard-project.txt => app/proguard-project.txt
  71. * res/ => app/src/main/res/
  72. * src/ => app/src/main/java/
  73. * src/.DS_Store => app/src/main/resources/.DS_Store
  74. * src/com/.DS_Store => app/src/main/resources/com/.DS_Store
  75. * src/com/usai/.DS_Store => app/src/main/resources/com/usai/.DS_Store
  76. Next Steps:
  77. -----------
  78. You can now build the project. The Gradle project needs network
  79. connectivity to download dependencies.
  80. Bugs:
  81. -----
  82. If for some reason your project does not build, and you determine that
  83. it is due to a bug or limitation of the Eclipse to Gradle importer,
  84. please file a bug at http://b.android.com with category
  85. Component-Tools.
  86. (This import summary is for your information only, and can be deleted
  87. after import once you are satisfied with the results.)