错误清单 - "错误解析XML:绑定preFIX" [英] Error in manifest - "Error parsing XML: unbound prefix"

查看:150
本文介绍了错误清单 - "错误解析XML:绑定preFIX"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的manifest.xml是,

My manifest.xml is,

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


    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="18" />
    <!-- Required -->
    <uses-permission android:name="android.permission.INTERNET"/>



    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.Light.NoTitleBar" >

        <meta-data android:name="com.revmob.app.id" android:value="52eb635c38a33"/>

        <activity android:name="com.revmob.ads.fullscreen.FullscreenActivity"
              android:theme="@android:style/Theme.Translucent"
              android:configChanges="keyboardHidden|orientation">
        </activity>


         <activity
            android:name="com.pilot.clicker.Splash"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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



        <activity
            android:name="com.pilot.clicker.Main"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="com.pilot.clicker.MAINSCREEN" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity android:label="@string/app_name" android:name="com.pilot.clicker.List"/>


    </application>

</manifest>

正在第一线之后显示的错误。
我试图广告服务'Revmob集成到我的Andr​​oid应用程序。我看了一个答案遍布internet..but就不能找到一个解决方案。请帮忙。
谢谢。

The error is being displayed after the first line. I'm attempting to integrate an ad-service 'Revmob' to my android-application. I've looked for an answer all over the internet..but just can't find a solution. Please help. Thank you.

推荐答案

把你的使用许可权后再行使用-SDK即

Put your uses-permission line after uses-sdk that is

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

 <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="18" />

<!-- Required -->
    <uses-permission android:name="android.permission.INTERNET"/>

也试图清理项目转到Project菜单(如果使用的是Eclipse),并清理项目,然后重新运行它。也许这将解决您的问题。

Also try to clean your project go to project menu (if you are using eclipse) and clean your project and re-run it. Might be this will resolve your issue.

这篇关于错误清单 - &QUOT;错误解析XML:绑定preFIX&QUOT;的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆