installPackageLI:/data/app/vmdl357092003.tmp/base.apk(在二进制XML文件行#18):<activity>没有有效的android:name]

时间:2016-12-23 11:38:26

标签: android while-loop installation apk

我对android Studio 2.2.3有疑问 当我尝试运行我的简单项目,hello world app时,我发现了这个错误 the first problem

然后我点击了确定。

我遇到了新问题

the second problem

解决方案是什么

1 个答案:

答案 0 :(得分:0)

that's the code of AndroidManifest xml :     








<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.user.myapplication">

    <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">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>