Libraries do not get added to APK anymore after upgrade to ADT 22

前端 未结 7 1524
一个人的身影
一个人的身影 2020-11-21 08:12

I have a rather big Android App project that is referencing several library projects. Everything was fine until i upgraded the eclipse ADT plugin to the newest version (v22)

7条回答
  •  猫巷女王i
    2020-11-21 08:21

    I had also the same problem and my adt was 22.0.1. And none of the solution above worked. Further when adding a external library project to a working project.I always check the gen folder of working project and if R of external library project is there (along with package name),then only external library project is exported. And on my gen folder no packagename of external library was shown.

    So I checked on project.properties file and there wasn't any external library link present android.library.reference.1= present. So I manually added the external library reference there ,even though I had added from project->properties->Java Build Path->Projects->Add. So manually editing the project.properties did all the work for me.

    enter image description here

提交回复
热议问题