I was trying to run a sample code While launching the application in the android 1.5 emulator , I got these errors.... Any one have some hint..?
ERROR from LogCat:<
As suggested by djjeck in comment in this answer I missed to put public modifier for my class.
djjeck
public
It should be
public class MyActivity extends AppCompatActivity {
It may help some like me.