What is Android Dependencies? Remove it from Build Path, ClassNotFoundException occurs

前端 未结 4 1340
无人共我
无人共我 2020-12-30 11:45

I\'m working on a team project. I included a .jar file in Build Path and committed to SVN. When I updated code in my working directory, a new folder appears in

相关标签:
4条回答
  • 2020-12-30 11:50

    I've had a similar problem after setting up a git repo with my project.

    The problem was that the appcompat import lost its folder reference.

    If the 'Fix Project Properties' mentioned doesn't work for you try this:

    1. Go to Project > Properties
    2. Go to the 'Android' tab
    3. Under 'Libraries', if there's a red 'X' next to the appcompat folder, remove it then hit 'add' and add it in again. The reference should show a green tick now.
    4. Save and clean the project if needs be
    0 讨论(0)
  • 2020-12-30 11:54

    Android Dependencies is a virtual folder where Eclipse shows what JAR files the project depends on. It's not a physical folder; you won't find it on your hard disk. And the folder is not checked in into Subversion.

    Do not delete that folder. You will destroy your project.

    To fix it, just revert to an older Subversion revision and check it in again.

    0 讨论(0)
  • 2020-12-30 11:54

    For the people whose heart dropped when they read the comment that deleting the Android Dependencies virtual folder will destroy your project, there is an easy fix.

    1. Right click on the destroyed project
    2. Select "Android Tools > Fix Project Properties" in the dropdown

    I hosed my project dependencies when trying to set up my git repo, and this is fixed it.

    0 讨论(0)
  • 2020-12-30 12:11

    If you also have marked project build target below API level 16 in the Android project properties, the error is going to come because prior to this level, there was no Android dependencies.

    0 讨论(0)
提交回复
热议问题