How to create n project with ADT r20 without including the android support library?

微笑、不失礼 提交于 2019-12-03 02:40:00

Go the SDK_Folder/extra/android and rename the folder compatibility to support. After that, restart the Eclipse.

Well, it's not ideal but until they fix ADT there at least appears to be a manual way to get there.

  1. Create the Android project with a min SDK of ICS. Skip adding an Activity when the wizard prompts to add one. Yes, annoyingly, it still adds the Support Library.

  2. After the project is created, open the project properties and go to Java Build Path.

  3. On the Libraries tab select Android Dependencies, click the Remove button, and click OK.

  4. In package explorer expand the "libs" folder and delete the support library jar.

I believe this gets you an ICS project without the unnecessary support library.

Since you deleted the support library from within the SDK Manager, click the "Install/Update" button on the screen that you're describing. This time it will let you move forward.

EDIT Clarification. The projects you're creating require the Support Library because you have created the project using a Application Templates. Read on for my answer Space Cowboy.

ADT R.20 now has Application Templates which creates a bit of the boilerplate for you. If you don't need a template, all you need to do is uncheck "Create Activity" when you get to the Create Activity screen of the New Android Project wizard.

I have noticed that there is a bit of a bug in the wizard. If you click next in the wizard at Create Activity and then click back to come back to this screen, the Finish button will be disabled. Even if you check/uncheck Create Activity the button will still be disabled, so you won't be able to create an empty project at this point. At this point you can simply cancel the wizard and start again.

Don't just rename the compatibility directory to support. This is addressed in http://code.google.com/p/android/issues/detail?id=33859 items 31 and 34. Use the SDK manager to remove the support library then use it to add it back in. Otherwise you may have other problems down the road.

Make a new folder name compatibility copy items from support and pate it in compatibility folder will resolve the issue

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!