Error in AndroidManifest.xml 'class' or 'interface' excepted

0

I did some bullshit and Manifest does not recognize the name of the Activity

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

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

The android:name=".Login" gets error and the message: 'class' or 'interface' excepted

Does anyone know how to solve it?

    
asked by anonymous 21.04.2017 / 02:54

1 answer

1

SOLUTION

This was the error I made when trying to add a new Activity in Manifest

Afterbreakingtheheadlookingforasolution,behold,onthebasisoftheattemptsIwasabletocorrect It was simple, but I spent a few hours until I

    
27.04.2017 / 21:51