2
respostas

App não inicializa

No canto inferior direito aparece a seguinte mensagem: "Error running 'app': No target device found." Na "aba" Event Log mostra a seguinte mensagem (em vermelho): "21:53 Error running 'app': No target device found."

O codigo no manifest é o seguinte:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="br.com.alura.agenda">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>
    </application>
</manifest>

E no java:

ckage br.com.alura.agenda;

import android.app.Activity;

public class MainActivity extends Activity {
}

Como eu poderia resolve-lo?

2 respostas

A mensagem parece ser relacionada com seu emulador , troque seu emulador .

Já usei esse e muito bom https://developer.samsung.com/galaxy/others/android-usb-driver-for-windows

Olá Steve!

Você está usando um emulador ou tentando executar em um dispositivo real?

Caso seja a primeira opção tenta seguir esse tutorial oficial da Google:

https://developer.android.com/studio/run/emulator?hl=pt-br

Caso seja a segunda tenta seguir esse:

https://developer.android.com/studio/run/device?hl=pt-br