有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java Android+DropboxSync应用程序

我想创建同步到dropbox的应用程序,但我有一个错误

谁可以帮助修复错误:

253-253/com.shvedchenko.skleroshop W/com.dropbox.client2.安卓.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 安卓:name="com.dropbox.sync.安卓.DbxAuthActivity" />
<activity
    安卓:name="com.dropbox.client2.安卓.AuthActivity"
    安卓:launchMode="singleTask" >
    <intent-filter>
        <data 安卓:scheme="db-d53t0ujht25nn98" />
        <action 安卓:name="安卓.intent.action.VIEW" />
        <category 安卓:name="安卓.intent.category.BROWSABLE" />
        <category 安卓:name="安卓.intent.category.DEFAULT" />
    </intent-filter>
</activity>
<service
    安卓:name="com.dropbox.sync.安卓.DbxSyncService"
    安卓:enabled="true"
    安卓:exported="false"
    安卓:label="Dropbox Sync" />
</application>
<uses-permission 安卓:name="安卓.permission.INTERNET" />
<uses-permission 安卓:name="安卓.permission.ACCESS_NETWORK_STATE" />

谢谢


共 (0) 个答案