Answers for "could not identify launch activity: default activity not found error while launching activity failed to launch an application on all devices"

0

Could not identify launch activity: Default Activity not found

<activity
    android:name=".MainActivity"
    android:label="YourAppName"
    android:theme="@style/AppTheme.NoActionBar" >
      <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
</activity>
Posted by: Guest on August-23-2021

Code answers related to "could not identify launch activity: default activity not found error while launching activity failed to launch an application on all devices"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language