0

I have a eclipse and updated SDK but i am unable to understand when i create a new project only src folder is generated.no any default Activity class is created.Also in manifest only application is loaded activity is not showing.where is the problem.if anyone know whats happening here then please help me.

manifest code is such like that

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="18" />


<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
</application>

Rims Sharma
  • 221
  • 1
  • 2
  • 9

2 Answers2

4

Maybe ur installation wasnt proper. Download it from here.

Updated As pointed out by Williams it could be a bug since many are facing this problem. So dont worry u r not alone.

Refer to this link below it might help Adt doesn't create default hello world but command line does

Community
  • 1
  • 1
ik024
  • 3,566
  • 7
  • 38
  • 61
0

Follow this :

File -> new -> android application project.

Then enter the application name correctly and press next.

Then you will see an check-box Create Activity at second position please check it. That will solve your problem. I hope .

see this for referrence

Yogesh D
  • 1,663
  • 2
  • 23
  • 38