Hello. Someone can tell - in one project I try to start not the main activity first, but an activity with entering my login and password, but this all fails, I already indicated something like this in the manifest:
<activity android:name=".ui.activities.LoginActivity" android:label="@string/title_activity_login"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> <activity android:name=".ui.activities.MainActivity"> </activity>
but in any way .... where else can it be necessary to prescribe something? it seems as soon as it had to be corrected in the code, so that the first would be activation with authorization. And the most interesting, I create a separate project, then in which I create activations with authorization, I prescribe as above I wrote and everything works as it should (i.e., it starts authorization activation first). What could be here?