android - My app doesn't appear in the AVD, after running from eclipse -
i created small app in eclipse android, , when press "run", new avd created, eclipse tells me app installed on avd, can't find on virtual device. why can be? thanks
i think forgot add these lines in manifest file. had same problem in app , showed app installed, not find in emulator.
<intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter>
also make sure set target avd run configurations. run->run configurations-> target, select avd list, click apply, ok. hope helps.
Comments
Post a Comment