答えは、一部が RTFM であり、一部がデバッガーの動作に驚いていることです。
Github は AccountManager を使用します。次のドキュメントから開始できます: http://developer.android.com/training/id-auth/custom_auth.html#ExtendThatThing
<service
android:name=".accounts.AccountAuthenticatorService"
android:exported="false"
android:process=":auth" >
<intent-filter>
<action android:name="android.accounts.AccountAuthenticator" />
</intent-filter>
<meta-data
android:name="android.accounts.AccountAuthenticator"
android:resource="@xml/authenticator" />
</service>
パート 2 - デフォルトでは、AccountAuthenticator 内に設定されたブレーク ポイントは起動しません。同じthread
com.github.mobile で実行されていないためです。代わりに、「com.github.mobile:auth」として実行されます。ブレークポイントを使用するには、DDMS パースペクティブに移動して、com.github.mobile:auth をデバッグ可能としてマークする必要があります。