App does not appear in emulator

Asked

Viewed 686 times

0

I am creating an app in Android Studio, I am using the emulator Genymotion, everything is running normal, only it does not run the app and does not appear the icon in the emulator.

Androidmanifest.xml

<?xml version="1.0" encoding="utf-8"?>

<uses-permission android:name="android.permission.INTERNET"/>

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

inserir a descrição da imagem aqui

insert image description hereinserir a descrição da imagem aqui insert image description here

insert image description here inserir a descrição da imagem aqui

  • Already checked in the application tray?

  • @Guilhermecostamilam the name of my app is Comidadiboteco I’ve looked in the tray and only have the old apps I made.

  • @Guilhermecostamilam will have something to do with android studio 3.0, he’s asking to download the new version.

  • 1

    Have you tried with the emulator of Android Studio ? Nowadays this would be preferable to Genymotion

  • @Isac tried too, but the same thing of genymotion

  • 1

    I do not recommend updating android studio, to see many people, including here in the community, who is having problems after the update, including the apps that were working normally before

Show 1 more comment

1 answer

1

Opa beleza :) Already installed the Genymotion plugin in Android Studio?

File > Settings > Plugins > Browse repositories... > Search for Genymotion and install it

More information

Browser other questions tagged

You are not signed in. Login or sign up in order to post.