任何想法爲什麼我在Android Dropbox SDK中撥打getSession().startAuthentication()
時出現此錯誤?Android Dropbox SDK清單設置
: FATAL EXCEPTION: main
: java.lang.IllegalStateException: URI scheme in your app's manifest is not set up correctly. You should have a com.dropbox.client2.android.AuthActivity with the scheme: db-CHANGE_ME
然而,我的AndroidManifest.xml有<Application></Application>
中的以下作爲入門說明指示。
<activity
android:name="com.dropbox.client2.android.AuthActivity"
android:launchMode="singleTask"
android:configChanges="orientation|keyboard">
<intent-filter>
<!-- Change this to be db- followed by your app key -->
<data android:scheme="db-MYKEYISHERE" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE"/>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
而且......那麼你完全刪除你的其他的答案嗎?你所擁有的其餘部分在哪裏?這本身不是一個答案。另外,將來您可以使用編輯按鈕來更正您的答案和帖子。 – SomethingDark 2015-03-21 02:11:07