Wajih
Wajih

Reputation: 791

Disable Android Support Library ADT: Build: v22.6.2-1085508

I am really annoyed at the way the new ADT is working. It has been a week since have started trying to figure out how to stop Android Support Library from being included into new projects. But even after uninstalling the library, I keep getting the imports into the codes with MainActivity inherting/implementing from ActionBarActivity.

How do I stop this problem??

Please help

Upvotes: 0

Views: 518

Answers (1)

CommonsWare
CommonsWare

Reputation: 1006819

How do I stop this problem?

Do not create an activity when you create the new project. What is adding the extra libraries is the new-activity wizard, both on its own and as integrated in the new-project wizard.

Instead, create your activity classes, resources, and manifest entries by hand, until such time as they provide other templates that do not require these libraries.

Upvotes: 1

Related Questions