Error creating Class in Eclipse Android

1

When I create a new project in Eclipse Android it shows the following errors:

Detail: I only downloaded the%% 4.0 and 4.2% and the lower ones% the extras and apis .

    
asked by anonymous 14.10.2015 / 23:01

1 answer

1

I recommend downloading the most current version of the Android SDK which at this time is 6.0.

In AndroidManifest.xml put the following:

android:minSdkVersion="7"
targetSdkVersion="23"

If you do not want to download 6.0, set targetSdkVersion="17" to version 4.2.2 or targetSdkVersion="19" to version 4.4.2 but you must delete the \res\values-21 folder to get rid of errors.

If you are starting to program for Android use Android Studio, Eclipse ADT is no longer supported by Google.

    
14.10.2015 / 23:28