1

I am a complete beginner in Android and as the title says my application is not showing up in the emulator (tried all the solutions on stackoverflow)

troubleshooting that i did:

1)used genymotion

2)made sure that I have `

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

3)unchecked the ABD integration

4)the same version for the SDK

5)installed HAXM at a previous point and made sure from the BIOS that the visualization is enabled

My complete Mainfest after many editing

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.lenovo.myapplication">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        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>

</manifest>

1 Answers1

0

Try to build the apk independently then drag and drop it into the genymotion emulator.

Amr Alaa
  • 1,156
  • 11
  • 16