0

您好,所以我构建了一个统一的 android 库,在开始时它运行良好,但知道给了我这个错误
,我已经尝试更新,创建一个新的,但没有
任何帮助?

错误图片

显现:

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

    <uses-sdk
        android:minSdkVersion="21"
        android:targetSdkVersion="23" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtlexporte="true"
        android:theme="@style/AppTheme" >
        <receiver
            android:name="sendtounityservice.sendintent.test.com.myapplication.MyReceiver"
            android:enabled="true"
            android:exported="true" >
            <intent-filter>
                <action android:name="sendtounityservice.sendintent.test.com.myapplication.IntentToUnity" />
            </intent-filter>
        </receiver>
    </application>

</manifest>

xmlns 中的第一个错误 - 未注册 URI(设置 | ..)

4

1 回答 1

0

像错误状态一样:找不到“supportsRtlexporte”。您可能的意思是“supportsRtl”。

于 2016-04-17T20:17:48.817 回答