Reputation: 788
I recently generated Gradle build files for my Android application project in Eclipse for the sake of testing Android Studio. I went back to Eclipse and try to run my project. However, now none of my library JARs in the libs folder are being recognized. When I run, I instead get something like this in LogCat:
05-19 13:19:47.828: E/AndroidRuntime(31096): java.lang.NoClassDefFoundError: android.support.v4.app.TaskStackBuilder
Is there any way to get my JARs recognize again? I tried the solution found here, but to no avail.
Upvotes: 1
Views: 1541
Reputation: 28539
It's a bug in ADT 22. Make sure to go in all your projects, and in the project properties, go in "Build Path", then in the "Order and Export" tab make sure both containers (dependencies and private libraries) are checked.
Upvotes: 2