I have an android project which for some reason does not work without appcompat 7_5.
As a matter of fact, not even the hello world from the android developers hp works on my comuter without it.
I would like my projects to work with only appcompat 7.
As the code can obviously not be the reason (hello world), any one have any suggestions what it might be?
Thank you
Edit:
Ok, I changed the project.properties file which removed most of the mistakes, BUT now the gui is not working any more, as "R cannot be resolved to a variable"
My changes:
target=android-19
#android.library.reference.1=../appcompat_v7_5
android.library.reference.2=../appcompat_v7
android.library=true
android.library.reference.3=../appcompat_v7_4
I only made the second line a comment everything else was there before. Now how to get R back?
I think this "R cannot be resolved...."thing was why I added appcpompat 7_5 in the first place.