Reputation: 2130
I wanted to work on a project with Studio. The project is currently in a different laptop and Eclipse ADT IDE.
When I try to export it with "Generate gradle build options" and click on the project, I receive the following error:
Project ..\appcompat_v7 is missing. Needed by CHCom. Make sure all dependencies are opened.
I tried:
Importing v7 from properties and restarting eclipse. When that didn't help I tried removing v7 (Since no class is dependent on it)
My Project libraries looks like the attached image
Upvotes: 0
Views: 332
Reputation: 2130
For folks facing similar problem, the culprit was a little line in project.properties :
android.library.reference.1=../appcompat_v7
When I removed it, all went well.
Upvotes: 2