Advertisement
tthtlc

Android Studio migrating "Yamba" to gradle

May 27th, 2014
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. ECLIPSE ANDROID PROJECT IMPORT SUMMARY
  2. ======================================
  3.  
  4. Ignored Files:
  5. --------------
  6. The following files were *not* copied into the new Gradle project; you
  7. should evaluate whether these are still needed in your project and if
  8. so manually move them:
  9.  
  10. * .gitignore
  11. * proguard-project.txt
  12.  
  13. Replaced Jars with Dependencies:
  14. --------------------------------
  15. The importer recognized the following .jar files as third party
  16. libraries and replaced them with Gradle dependencies instead. This has
  17. the advantage that more explicit version information is known, and the
  18. libraries can be updated automatically. However, it is possible that
  19. the .jar file in your project was of an older version than the
  20. dependency we picked, which could render the project not compileable.
  21. You can disable the jar replacement in the import wizard and try again:
  22.  
  23. android-support-v4.jar => com.android.support:support-v4:+
  24.  
  25. Moved Files:
  26. ------------
  27. Android Gradle projects use a different directory structure than ADT
  28. Eclipse projects. Here's how the projects were restructured:
  29.  
  30. * AndroidManifest.xml => app/src/main/AndroidManifest.xml
  31. * libs/jtwitter-yamba.jar => app/libs/jtwitter-yamba.jar
  32. * libs/signpost-commonshttp4.jar => app/libs/signpost-commonshttp4.jar
  33. * libs/signpost-core.jar => app/libs/signpost-core.jar
  34. * lint.xml => app/lint.xml
  35. * res/ => app/src/main/res/
  36. * src/ => app/src/main/java/
  37.  
  38. Next Steps:
  39. -----------
  40. You can now build the project. The Gradle project needs network
  41. connectivity to download dependencies.
  42.  
  43. Bugs:
  44. -----
  45. If for some reason your project does not build, and you determine that
  46. it is due to a bug or limitation of the Eclipse to Gradle importer,
  47. please file a bug at http://b.android.com with category
  48. Component-Tools.
  49.  
  50. (This import summary is for your information only, and can be deleted
  51. after import once you are satisfied with the results.)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement