Android + Dropbox Sync starLink

时间:2013-09-03 12:57:41

标签: java android dropbox

我希望创建带有同步到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);

我的AndroidManifest:

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

THX!

0 个答案:

没有答案