<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Dropbox sync API startLink() not working on HTC One (which has system installed Dropbox app on the device) in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-sync-API-startLink-not-working-on-HTC-One-which-has/m-p/20924#M692</link>
    <description>&lt;P&gt;Dropbox app version 2.3.5.10&lt;BR /&gt;
Dropbox for HTC Sense version 6.0.766933&lt;/P&gt;</description>
    <pubDate>Wed, 13 May 2015 22:29:22 GMT</pubDate>
    <dc:creator>Harish P.</dc:creator>
    <dc:date>2015-05-13T22:29:22Z</dc:date>
    <item>
      <title>Dropbox sync API startLink() not working on HTC One (which has system installed Dropbox app on the device)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-sync-API-startLink-not-working-on-HTC-One-which-has/m-p/20917#M685</link>
      <description>&lt;P&gt;I have integrated Dropbox into my app and it works on all Android devices except HTC ONE. The only difference I can see is that HTC ONE device has a pre-installed system app Dropboxc which cant be uninstalled. And the error that I get is "The app was not correctly configured and cannot access your Dropbox."&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;mDbxAcctMgr.startLink(activity, Constants.REQUEST_LINK_TO_DBX);&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;Any ideas how I can resolve this problem on HTC ONE?&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:42:56 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-sync-API-startLink-not-working-on-HTC-One-which-has/m-p/20917#M685</guid>
      <dc:creator>Harish P.</dc:creator>
      <dc:date>2019-05-29T09:42:56Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox sync API startLink() not working on HTC One (which has system installed Dropbox app on the device)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-sync-API-startLink-not-working-on-HTC-One-which-has/m-p/20918#M686</link>
      <description>&lt;P&gt;[Cross-linking for reference: &lt;A href="https://stackoverflow.com/questions/30212974/dropbox-sync-api-startlink-not-working-on-htc-one-which-has-system-installed" rel="nofollow noreferrer"&gt;https://stackoverflow.com/questions/30212974/dropbox-sync-api-startlink-not-working-on-htc-one-which-has-system-installed&lt;/A&gt; ]&lt;/P&gt;

&lt;P&gt;Does this only happen on HTC One devices with the Dropbox app installed, or does it happen on any Android device with the Dropbox app installed? (If you haven't tried the latter, please do.)&lt;/P&gt;

&lt;P&gt;Have you set up the &lt;CODE&gt;db-{YOUR_APP_KEY}&lt;/CODE&gt; intent filter, per the &lt;A href="https://www.dropbox.com/developers/sync/sdks/android" rel="nofollow noreferrer"&gt;instructions&lt;/A&gt;?&lt;/P&gt;

&lt;P&gt;Can you post the relevant code you're using to set up the account manager and call &lt;CODE&gt;startLink&lt;/CODE&gt;, per the &lt;A href="https://www.dropbox.com/developers/sync/start/android" rel="nofollow noreferrer"&gt;tutorial&lt;/A&gt;?&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2015 21:42:40 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-sync-API-startLink-not-working-on-HTC-One-which-has/m-p/20918#M686</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2015-05-13T21:42:40Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox sync API startLink() not working on HTC One (which has system installed Dropbox app on the device)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-sync-API-startLink-not-working-on-HTC-One-which-has/m-p/20919#M687</link>
      <description>&lt;P&gt;Thank you Greg for the response but as mentioned in my post it works fine on all other Android devices (With and without Dropbox app) and is failing only on HTC ONE.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;private DbxAccountManager mDbxAcctMgr;
    mDbxAcctMgr = DbxAccountManager.getInstance(
            mContext, Constants.DROPBOX_APP_KEY,
            Constants.DROPBOX_APP_SECRET);
    if (mDbxAcctMgr != null) {
        mDbxAcctMgr.startLink(activity,
                Constants.REQUEST_LINK_TO_DBX);
    }
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 13 May 2015 21:49:57 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-sync-API-startLink-not-working-on-HTC-One-which-has/m-p/20919#M687</guid>
      <dc:creator>Harish P.</dc:creator>
      <dc:date>2015-05-13T21:49:57Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox sync API startLink() not working on HTC One (which has system installed Dropbox app on the device)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-sync-API-startLink-not-working-on-HTC-One-which-has/m-p/20920#M688</link>
      <description>&lt;P&gt;Thanks! Have you set up the &lt;CODE&gt;db-{YOUR_APP_KEY}&lt;/CODE&gt; intent filter, per the &lt;A href="https://www.dropbox.com/developers/sync/sdks/android" rel="nofollow noreferrer"&gt;instructions&lt;/A&gt;? Can you post that too?&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2015 21:52:34 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-sync-API-startLink-not-working-on-HTC-One-which-has/m-p/20920#M688</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2015-05-13T21:52:34Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox sync API startLink() not working on HTC One (which has system installed Dropbox app on the device)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-sync-API-startLink-not-working-on-HTC-One-which-has/m-p/20921#M689</link>
      <description>&lt;P&gt;Yes and on all other devices I'm able to authorize and upload files to Dropbox.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    &amp;lt;activity android:name="com.dropbox.sync.android.DbxAuthActivity" /&amp;gt;
    &amp;lt;activity
      android:name="com.dropbox.client2.android.AuthActivity"
      android:launchMode="singleTask" &amp;gt;
      &amp;lt;intent-filter&amp;gt;
        &amp;lt;data android:scheme="db-i12524brdnlzkb1" /&amp;gt;
        &amp;lt;action android:name="android.intent.action.VIEW" /&amp;gt;
        &amp;lt;category android:name="android.intent.category.BROWSABLE" /&amp;gt;
        &amp;lt;category android:name="android.intent.category.DEFAULT" /&amp;gt;
      &amp;lt;/intent-filter&amp;gt;
    &amp;lt;/activity&amp;gt;
    &amp;lt;service
      android:name="com.dropbox.sync.android.DbxSyncService"
      android:enabled="true"
      android:exported="false"
      android:label="Dropbox Sync" /&amp;gt;  
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 13 May 2015 21:54:25 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-sync-API-startLink-not-working-on-HTC-One-which-has/m-p/20921#M689</guid>
      <dc:creator>Harish P.</dc:creator>
      <dc:date>2015-05-13T21:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox sync API startLink() not working on HTC One (which has system installed Dropbox app on the device)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-sync-API-startLink-not-working-on-HTC-One-which-has/m-p/20922#M690</link>
      <description>&lt;P&gt;Thanks! That's helpful. We'll look into it.&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2015 21:55:54 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-sync-API-startLink-not-working-on-HTC-One-which-has/m-p/20922#M690</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2015-05-13T21:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox sync API startLink() not working on HTC One (which has system installed Dropbox app on the device)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-sync-API-startLink-not-working-on-HTC-One-which-has/m-p/20923#M691</link>
      <description>&lt;P&gt;Also, can you let me know the version number for the Dropbox app installed on the HTC Once device(s) you've seen this on?&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2015 22:25:47 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-sync-API-startLink-not-working-on-HTC-One-which-has/m-p/20923#M691</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2015-05-13T22:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox sync API startLink() not working on HTC One (which has system installed Dropbox app on the device)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-sync-API-startLink-not-working-on-HTC-One-which-has/m-p/20924#M692</link>
      <description>&lt;P&gt;Dropbox app version 2.3.5.10&lt;BR /&gt;
Dropbox for HTC Sense version 6.0.766933&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2015 22:29:22 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-sync-API-startLink-not-working-on-HTC-One-which-has/m-p/20924#M692</guid>
      <dc:creator>Harish P.</dc:creator>
      <dc:date>2015-05-13T22:29:22Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox sync API startLink() not working on HTC One (which has system installed Dropbox app on the device)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-sync-API-startLink-not-working-on-HTC-One-which-has/m-p/20925#M693</link>
      <description>&lt;P&gt;Version 2.3.5.10 of the Dropbox app is a bit old now. Can you update to the latest version (currently 2.5.0.4 on &lt;A href="https://play.google.com/store/apps/details?id=com.dropbox.android" rel="nofollow noreferrer"&gt;Google Play&lt;/A&gt;) and let me know if you still see the issue?&lt;/P&gt;</description>
      <pubDate>Fri, 15 May 2015 04:22:24 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-sync-API-startLink-not-working-on-HTC-One-which-has/m-p/20925#M693</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2015-05-15T04:22:24Z</dc:date>
    </item>
  </channel>
</rss>

