function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
mike_chalemike_chale 

Android hybrid local app changing Communities login URL

I have an Android hybrid local app created using forcedroid create. I have configured servers.xml to point to my Communities login page, but when I launch the app it appends "/services/oauth2/authorize" to my URL. Going to my URL in a browser loads the login page as expected.

servers.xml:
<?xml version="1.0" encoding="utf-8"?> 
<servers> 
  <server name="myCommunity" url="https://myDomain.cs12.force.com/login"/> 
</servers>

What the app loads: https://myDomain.cs12.force.com/login/services/oauth2/authorize?[various parameters]

I don't have this problem with the iOS version of the app. How do I stop it from trying to use OAuth instead of the regular login page?