2014-01-31 57 views
1

我的manifest.xml是,被第一行後顯示錯誤清單 - 「錯誤解析XML:綁定前綴」

<?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'集成到我的android應用程序中。我已經找遍了互聯網上的答案..但只是找不到解決方案。請幫忙。 謝謝。

+0

使用下面的代碼,讓我知道它是否在工作。 – InnocentKiller

+2

發佈您的完整清單文件。 – Piyush

+0

問題不在您附加的部分。發佈整個事情。 –

回答

1

把你的使用許可權後再行使用-SDK是

<?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"/> 

也試圖清理項目進入工程菜單(如果使用的是Eclipse)和清理項目,然後重新運行它。可能這會解決你的問題。

+0

Nopes我不認爲這是問題?請讓我們知道這是否是問題@ John918 –

+0

這不是一個真正的問題。 – Piyush

+0

我剛試過。它沒有解決問題。 – John918

相關問題