1

我想创建与 Dropbox 同步的应用程序,但出现错误。

谁可以帮助修复错误:

253-253/com.shvedchenko.skleroshop W/com.dropbox.client2.android.AuthActivity: There are multiple apps registered for the AuthActivity URI scheme (db-aaat0ujhbfgnn98).  Another app may be trying to  impersonate this app, so authentication will be disabled.

我打电话时遇到这个错误:

mDbxAcctMgr.startLink((Activity)this, REQUEST_LINK_TO_DBX);

我的安卓清单:

<activity android:name="com.dropbox.sync.android.DbxAuthActivity" />
<activity
    android:name="com.dropbox.client2.android.AuthActivity"
    android:launchMode="singleTask" >
    <intent-filter>
        <data android:scheme="db-d53t0ujht25nn98" />
        <action android:name="android.intent.action.VIEW" />
        <category android:name="android.intent.category.BROWSABLE" />
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>
<service
    android:name="com.dropbox.sync.android.DbxSyncService"
    android:enabled="true"
    android:exported="false"
    android:label="Dropbox Sync" />
</application>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

谢谢!

4

0 回答 0