泽Long 2020-10-25 13:05 采纳率: 0%
浏览 223

ERROR: Failed to parse XML in D:\zhbj-master\app\src\main\AndroidManifest.xml

从github上面下载运行后出现的问题
ERROR: Failed to parse XML in D:\zhbj-master\app\src\main\AndroidManifest.xml
ParseError at [row,col]:[18,5]
Message: expected start or end tag
Affected Modules: app

这是app的代码:
apply plugin: 'com.android.application'
apply plugin: "com.mob.sdk"

android {
compileSdkVersion 27
defaultConfig {
applicationId "com.daleyzou.zhbj"
minSdkVersion 16
targetSdkVersion 27
versionCode 1
versionName "1.0"
useLibrary 'org.apache.http.legacy'
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
implementation 'com.android.support:support-v4:27.1.1'
implementation project(':SlidingMenu-master')
implementation files('libs/xUtils-2.6.14.jar')
implementation files('libs/gson-2.3.1.jar')
implementation project(':ViewPagerIndicator-master')
}

MobSDK {
appKey "257150a36a59c"
appSecret "083967ab418ef61645471141f32e2418"

ShareSDK {
    devInfo {
        SinaWeibo {
            appKey "257150a36a59c"
            appSecret "083967ab418ef61645471141f32e2418"
            callbackUri "http://www.sharesdk.cn"
            shareByAppClient false
        }
        Wechat {
            appId "257150a36a59c"
            appSecret "083967ab418ef61645471141f32e2418"
        }
        QQ {
            appId "257150a36a59c"
            appKey "083967ab418ef61645471141f32e2418"
        }
    }
}

}
这是AndroidManifest.xml的代码:
<?xml version="1.0" encoding="utf-8"?>
package="com.jeremyfeinstein.slidingmenu.lib"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="5"
    android:targetSdkVersion="17" />


有大神知道这到底是什么问题吗?

  • 写回答

1条回答 默认 最新

  • 霁晨晨晨 2023-05-22 23:29
    关注

    这个错误是 AndroidManifest.xml 文件中某个标签没有正确的开头或结尾导致其他标签无法解析。可以按照以下步骤解决此问题:

    1. 打开 D:\zhbj-master\app\src\main\AndroidManifest.xml 文件。
    2. 找到第18行和其周围行的标签,检查是否有任何语法错误或缺少开始或结束标记的情况。
    3. 如果发现标签没有闭合,请添加一个 ">" 结束标记;如果发现标签没有开始标记,请添加一个 "<" 开始标记。
    4. 修复所有错误后重新编译代码并重新运行应用程序。

    以下是一个修复后的 AndroidManifest.xml 文件示例:

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.daleyzou.zhbj"
        android:versionCode="1"
        android:versionName="1.0">
    
        <uses-sdk
            android:minSdkVersion="16"
            android:targetSdkVersion="27" />
            
        <!-- 添加你的其他权限声明 -->
        
        <application
            android:allowBackup="true"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/app_name"
            android:supportsRtl="true"
            android:theme="@style/AppTheme">
            
            <!-- 添加你的 activity、service 和 receiver 等声明 -->
            
        </application>
    
    </manifest>
    

    请根据上述示例修改你的 AndroidManifest.xml 文件,并重新编译代码并运行应用程序。

    评论

报告相同问题?

悬赏问题

  • ¥15 有关wireshark抓包的问题
  • ¥15 需要写计算过程,不要写代码,求解答,数据都在图上
  • ¥15 向数据表用newid方式插入GUID问题
  • ¥15 multisim电路设计
  • ¥20 用keil,写代码解决两个问题,用库函数
  • ¥50 ID中开关量采样信号通道、以及程序流程的设计
  • ¥15 U-Mamba/nnunetv2固定随机数种子
  • ¥15 vba使用jmail发送邮件正文里面怎么加图片
  • ¥15 vb6.0如何向数据库中添加自动生成的字段数据。
  • ¥20 在easyX库下编写C语言扑克游戏跑的快,能实现简单的人机对战