Advertisement
dermetfan

relink assets folder

Jan 11th, 2014
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. Often after cloning the repository of a LibGDX project, the assets folder of the desktop project is linked to an invalid location. That's because the path it was linked to is absolute in eclipse. You will have to delete it and link it with the assets folder of the android project again:
  2.  
  3. 1. delete proj-desktop/assets (it's just a link)
  4. 2. right-click proj-desktop -> "Properties..."
  5. 3. select "Java Build Path" from list on the left
  6. 4. go to "Source" tab
  7. 5. click "Link Source..." button on the right
  8. 6. click "Browse..." and select proj-android/assets
  9. 7. click "Finish" in bottom right
  10. 8. click "OK" in bottom right
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement