com.android.ide.eclipse.adt.DEPENDENCIES - where is this symbolic reference's value set? -
having updated latest sdk 4.4w, sdk tools 23.0 , eclipse plugin 23.0, along other ide bugs, find projects refuse build because of build path error:
the container 'android dependencies' references non existing library c:\dev\tools\android-sdk-windows4.4\tools\support\annotations.jar'
i know it's missing whole folder has gone , jar appears in folder:
c:\dev\tools\android-sdk-windows4.4\extras\android\support\annotations
my .classpath looks like:
<?xml version="1.0" encoding="utf-8"?> <classpath> <classpathentry kind="src" path="src"/> <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.android_framework"/> <classpathentry kind="src" path="gen"/> <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.libraries"/> <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.dependencies"/> <classpathentry kind="output" path="bin/classes"/> </classpath>
i'm assuming last .dependencies entry holds explicit reference annotations.jar , i'm asking file in eclipse or android sdk or project folders contains reference?
i'm hoping 'poke' temporarily right reference until such time google round fixing dreadful excuse release. (i don't want create old folder again , copy new (bigger) annotations.jar it)
i can confirm commonswares answer, copy file , don´t forget rename annotations.jar. helped me
Comments
Post a Comment