gpt4 book ai didi

android - 标记 属性包具有无效字符 ' ' Android Manifest

转载 作者:行者123 更新时间:2023-11-29 14:18:59 26 4
gpt4 key购买 nike

我收到错误消息“标记属性包具有无效字符‘’。”在 Android Manifest 中,虽然没有明显的无效字符。这是代码:

    <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.exampl e.harounsmida.test2"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="15"
android:targetSdkVersion="22" />

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

<application
android:name="com.example.harounsmida.test2.app.AppController"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.harounsmida.test2.LoginActivity"
android:label="@string/app_name"
android:launchMode="singleTop"
android:windowSoftInputMode="adjustPan" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.example.harounsmida.test2.RegisterActivity"
android:label="@string/app_name"
android:launchMode="singleTop"
android:windowSoftInputMode="adjustPan" />
<activity
android:name="com.example.harounsmida.test2.MainActivity"
android:label="@string/app_name"
android:launchMode="singleTop" />
<activity
android:name="com.example.harounsmida.test2.UploadToServerActivity"
android:label="@string/app_name"
android:launchMode="singleTop" />
</application>

</manifest>

我不明白问题出在哪里,Android Studio 说“构建文件夹下的文件已生成,不应编辑。”虽然我没有编辑它。

最佳答案

从包名中删除空格:

package="com.exampl e.harounsmida.test2"

删除空格后:

package="com.example.harounsmida.test2"

关于android - 标记 <manifest> 属性包具有无效字符 ' ' Android Manifest,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31850561/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com