import-summary.txt 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. ECLIPSE ANDROID PROJECT IMPORT SUMMARY
  2. ======================================
  3. Manifest Merging:
  4. -----------------
  5. Your project uses libraries that provide manifests, and your Eclipse
  6. project did not explicitly turn on manifest merging. In Android Gradle
  7. projects, manifests are always merged (meaning that contents from your
  8. libraries' manifests will be merged into the app manifest. If you had
  9. manually copied contents from library manifests into your app manifest
  10. you may need to remove these for the app to build correctly.
  11. Ignored Files:
  12. --------------
  13. The following files were *not* copied into the new Gradle project; you
  14. should evaluate whether these are still needed in your project and if
  15. so manually move them:
  16. From Kneet_07:
  17. * ic_launcher-web.png
  18. * proguard-project.txt
  19. From android-support-v7-recyclerview:
  20. * README.txt
  21. Replaced Jars with Dependencies:
  22. --------------------------------
  23. The importer recognized the following .jar files as third party
  24. libraries and replaced them with Gradle dependencies instead. This has
  25. the advantage that more explicit version information is known, and the
  26. libraries can be updated automatically. However, it is possible that
  27. the .jar file in your project was of an older version than the
  28. dependency we picked, which could render the project not compileable.
  29. You can disable the jar replacement in the import wizard and try again:
  30. android-support-v4.jar => com.android.support:support-v4:18.0.0
  31. android-support-v7-appcompat.jar => com.android.support:appcompat-v7:21.0.3
  32. android-support-v7-gridlayout.jar => com.android.support:gridlayout-v7:21.0.3
  33. Replaced Libraries with Dependencies:
  34. -------------------------------------
  35. The importer recognized the following library projects as third party
  36. libraries and replaced them with Gradle dependencies instead. This has
  37. the advantage that more explicit version information is known, and the
  38. libraries can be updated automatically. However, it is possible that
  39. the source files in your project were of an older version than the
  40. dependency we picked, which could render the project not compileable.
  41. You can disable the library replacement in the import wizard and try
  42. again:
  43. android-support-v7-appcompat => [com.android.support:appcompat-v7:21.0.3]
  44. android-support-v7-gridlayout => [com.android.support:gridlayout-v7:21.0.3]
  45. google-play-services_lib1 => [com.google.android.gms:play-services:+]
  46. Moved Files:
  47. ------------
  48. Android Gradle projects use a different directory structure than ADT
  49. Eclipse projects. Here's how the projects were restructured:
  50. In android-support-v7-recyclerview:
  51. * AndroidManifest.xml => androidsupportv7recyclerview/src/main/AndroidManifest.xml
  52. * assets/ => androidsupportv7recyclerview/src/main/assets/
  53. * res/ => androidsupportv7recyclerview/src/main/res/
  54. * src/ => androidsupportv7recyclerview/src/main/java/
  55. In Kneet_07:
  56. * AndroidManifest.xml => kneet_07/src/main/AndroidManifest.xml
  57. * assets/ => kneet_07/src/main/assets/
  58. * libs/armeabi/libnXerOnvifCameraManager.so => kneet_07/src/main/jniLibs/armeabi/libnXerOnvifCameraManager.so
  59. * libs/jackson-core-asl-1.9.4.jar => kneet_07/libs/jackson-core-asl-1.9.4.jar
  60. * libs/jackson-mapper-asl-1.9.4.jar => kneet_07/libs/jackson-mapper-asl-1.9.4.jar
  61. * libs/nXerOnvifCamaraManager.jar => kneet_07/libs/nXerOnvifCamaraManager.jar
  62. * lint.xml => kneet_07/lint.xml
  63. * res/ => kneet_07/src/main/res/
  64. * src/ => kneet_07/src/main/java/
  65. Next Steps:
  66. -----------
  67. You can now build the project. The Gradle project needs network
  68. connectivity to download dependencies.
  69. Bugs:
  70. -----
  71. If for some reason your project does not build, and you determine that
  72. it is due to a bug or limitation of the Eclipse to Gradle importer,
  73. please file a bug at http://b.android.com with category
  74. Component-Tools.
  75. (This import summary is for your information only, and can be deleted
  76. after import once you are satisfied with the results.)