package com.example.mytests;
import android.app.Activity;
public class MainActivity extends Activity {}
For the code above, even though I do not implement OnCreate()
method I get no errors and program works. Should't I get an error that I should override it?