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>
insert image description here insert image description here
Already checked in the application tray?
– Costamilam
@Guilhermecostamilam the name of my app is Comidadiboteco I’ve looked in the tray and only have the old apps I made.
– Rodrigo Jacinto
@Guilhermecostamilam will have something to do with android studio 3.0, he’s asking to download the new version.
– Rodrigo Jacinto
Have you tried with the emulator of Android Studio ? Nowadays this would be preferable to Genymotion
– Isac
@Isac tried too, but the same thing of genymotion
– Rodrigo Jacinto
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
– Costamilam