Android 旧项目中的Twitter问题

Android 旧项目中的Twitter问题,android,twitter,Android,Twitter,昨天我得到了一个旧项目,当我试图编译该项目时,我得到以下错误 属性中缺少Android命名空间前缀 <activity android:name="net.mxxxx.xxxxx.twitter.AuthTwitter" android:launchMode="singleTask" android:screenOrientation="portrait"> <intent-filter> <action android:n

昨天我得到了一个旧项目,当我试图编译该项目时,我得到以下错误

属性中缺少Android命名空间前缀

 <activity android:name="net.mxxxx.xxxxx.twitter.AuthTwitter" android:launchMode="singleTask" android:screenOrientation="portrait">
        <intent-filter>
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />
            <data host="twitterAuth" android:scheme="xxxxxx" />
        </intent-filter>
    </activity>


最小SDK是“7”,我把它增加到了13,请帮助解释为什么会发生错误

真正的问题是为什么它以前没有抱怨过。只要改变这个:

<data host="twitterAuth" android:scheme="xxxxxx" />


谢谢,现在可以用了,我刚拿到代码,我不知道以前的版本。
<data android:host="twitterAuth" android:scheme="xxxxxx" />