Java AndroidStudio Activity Class does not exist Type3

kinberge

Cadet 1st Year
Registriert
Okt. 2015
Beiträge
8
Hallo Leute,

habe folgendes Problem, ich bekomme diese Fehlermeldung wenn ich meine App auf meinen Handy(GalaxyS3) über Android Studios ausführen möchte:
Code:
Launching application: f*******rg.mutterpass/de.f*******g.mutterpass.Login.
DEVICE SHELL COMMAND: am start -n "f*******g.mutterpass/de.f*******g.mutterpass.Login" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER
Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=f*******g.mutterpass/de.f*******g.mutterpass.Login }
Error type 3
Error: Activity class {f*******g.mutterpass/de.f*******g.mutterpass.Login} does not exist.

Die App wird zwar auf mein Handy gespeichert, ich kann sie auch öffnen und sie funktioniert einwandfrei. Nur sie startet halt nicht automatisch durch Android Studio. Und gestern hat es noch funktioniert , ich habe nichts verändert lediglich den SDK Manager heute nebenbei Updaten lassen..

Hier die Manifest:

Code:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="de.f*******g.mutterpass" >

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".Login"
            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=".Register"
            android:label="@string/title_activity_register" >
        </activity>
    </application>

</manifest>
 

Ähnliche Themen

Zurück
Oben