问题
I have recently update my ADT to rev. 20, but now I find that newly created project always included the android support library. I don't want to use the FragmentActivity
class, which is defined in the support library, I just want to use the pure Fragment class.
I tried to delete the support library via the SDK manager tool, but now I cannot create any projects since the ADT is reporting
This template depends on the Android Support library, which is either not installed, ......
Is there any method to by pass this except for create a project by shell command?
回答1:
Go the SDK_Folder/extra/android and rename the folder compatibility to support. After that, restart the Eclipse.
回答2:
Well, it's not ideal but until they fix ADT there at least appears to be a manual way to get there.
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.
After the project is created, open the project properties and go to Java Build Path.
On the Libraries tab select Android Dependencies, click the Remove button, and click OK.
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.
回答3:
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.
回答4:
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.
回答5:
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.
回答6:
Make a new folder name compatibility copy items from support and pate it in compatibility folder will resolve the issue
来源:https://stackoverflow.com/questions/11425730/how-to-create-n-project-with-adt-r20-without-including-the-android-support-libra