私は新しいアンドロイドのプログラマーです。
私はアンドロイドのスタジオで、単純な「Hello World」のアプリを作成したが、私はAVD上でそれを実行すると、それは次のエラー得られます。AVDでアプリを起動できません
Unexpected error while executing: am start -n "com.example.ahrims.helloworld/com.example.ahrims.helloworld.MainActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER
Error while Launching activity
は、EDIT 1:ここでは
は、マニフェストファイルです。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.ahrims.helloworld">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity"
android:label="@string/app_name"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
編集2:
され、次のMainActivityファイル:
package com.example.ahrims.helloworld;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
私はそれを見つけましたが、役に立たない回答は見つかりませんでした。
任意の助けいただければ幸いです。 ありがとうございます。
マニフェスト – Tauqir
てみアンインストールを投稿してくださいあなたのアプリ、クリーンビルド、gradle同期、プラグを抜いて、USBケーブルを再接続し...再構築し、あなたのアプリケーションを実行します。 – Elye
私はそれをすべて行いましたが、同じエラーが発生します。 @Elye –