元素 activity 上缺少 'name' 关键属性作为 AndroidManifest.xml
Missing 'name' key attribute on element activity as AndroidManifest.xml
我在运行gradle构建时遇到如下错误:
Missing 'name' key attribute on element activity at AndroidManifest.xml
查了其他Whosebug问题,把“intent-filter”部分注释掉了,还是报错。
当前AndroidManifest.xml:
<manifest xmlns:android="https://schemas.android.com/apk/res/android"
package="com.example.MyProject"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:misSdkVersion="24"
android:targetSdkVersion="28" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main" >
</activity>
</application>
</manifest>
有什么建议吗?
提前致谢
在 xmlns:android
中使用 http
"http://schemas.android.com/apk/res/android"
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.MyProject"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:misSdkVersion="24"
android:targetSdkVersion="28" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main" >
</activity>
</application>
</manifest>
在 Android 清单文件的 Application
标签上指定 name
属性:
<application
// Declare a name tag here:
android:name=""
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main" >
</activity>
</application>
我在运行gradle构建时遇到如下错误:
Missing 'name' key attribute on element activity at AndroidManifest.xml
查了其他Whosebug问题,把“intent-filter”部分注释掉了,还是报错。 当前AndroidManifest.xml:
<manifest xmlns:android="https://schemas.android.com/apk/res/android"
package="com.example.MyProject"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:misSdkVersion="24"
android:targetSdkVersion="28" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main" >
</activity>
</application>
</manifest>
有什么建议吗? 提前致谢
在 xmlns:android
中使用 http "http://schemas.android.com/apk/res/android"
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.MyProject"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:misSdkVersion="24"
android:targetSdkVersion="28" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main" >
</activity>
</application>
</manifest>
在 Android 清单文件的 Application
标签上指定 name
属性:
<application
// Declare a name tag here:
android:name=""
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main" >
</activity>
</application>