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?