Sesese
Sesese

Reputation: 33

Manifest attribute in Android using Eclipse

I'm new in android programming and I encountered some error while following some tutorials on Youtube.

Manifest attribute 'minSdkVersion' is set to 'R'. Integer is expected.

Here's the code:

import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();
        if (id == R.id.action_settings) {
            return true;
        }
        return super.onOptionsItemSelected(item);
    }
}

Here's the AndroidManifest.xml AndroidManifest.xml| .xml Again Im just a beginner, please help thanks!

Upvotes: 0

Views: 89

Answers (1)

Priyanka
Priyanka

Reputation: 1875

You need to change minSdkVersion version as below

android:minSdkVersion="21"

Upvotes: 1

Related Questions