Android Studio | Emulator | App not appearing on (windows 8.1)

  • Replies:2
Michael John
  • Forum posts: 2

Aug 4, 2016, 10:01:36 PM via Website

I was hoping for a little help. I've recently install android studio on my windows 8.1 without a problem. I created a new project and tried running the emulator.

The emulator runs, but the app I created doesn't appear (no or my phone).

I see no error messages on the android studio and just can't figure out why the app won't appear.

Does anyone know what I'm doing wrong?

Reply
Ludy
  • Admin
  • Forum posts: 7,961

Aug 4, 2016, 10:52:02 PM via Website

Hi Michael,
Write your class of Activity as launcher

AndroidManifest.xml

  <application
     ...
    <activity
android:name="mypackage1.MainActivity"
android:label="@string/title_activity_main">

<intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

Gruß Ludy (App Entwickler)

Mein Beitrag hat dir geholfen? Lass doch ein "Danke" da.☺

☕ Buy Me A Coffee ☕

Lebensmittelwarnung-App

✨Meine Wunschliste✨

📲Telegram NextPit News📲

Reply
Michael John
  • Forum posts: 2

Aug 4, 2016, 11:23:49 PM via Website

Hi,

I'm still lost.

I've built two identical applications, one on a windows 7 pc, the other on a windowsn8 pc.

The codes are identical - both PCs open the emulator successfully.

However, the windows 8 pc won't show the app. One import note is that I had to enable the VT before the windows 8 laptop would run the emulator.

Does anyone know why the app may not appear on my emulator? Is there a systematic way to figure out where the problem lies (is it android studio, the emulator, the laptop's setting?)

Any help would be very much appreciated.

M

— modified on Aug 7, 2016, 8:45:02 PM

Reply