你好,所以我为unity构建了一个android库,一开始它运行得很好,但know给了我这个错误
我已经尝试更新,创建一个新的,但没有任何效果
有什么帮助吗?
错误图像
清单:
<?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未注册(设置|..)
类似错误状态:找不到"supportsRtxporte"。你的意思可能是"支持Rtl"。