fixes #2847 use class name to start service

This commit is contained in:
Nathan Freitas 2014-01-09 15:28:53 -05:00
parent 2735a59151
commit 069a9bf377
1 changed files with 6 additions and 3 deletions

View File

@ -88,8 +88,6 @@ public class Orbot extends SherlockActivity implements TorConstants, OnLongClick
setLocale();
startService(new Intent(INTENT_TOR_SERVICE));
doLayout();
}
@ -1054,10 +1052,15 @@ public class Orbot extends SherlockActivity implements TorConstants, OnLongClick
//this is where we bind!
private void bindService ()
{
Intent iTorService = new Intent(ITorService.class.getName());
getApplication().getApplicationContext().startService(iTorService);
//since its auto create, we prob don't ever need to call startService
//also we should again be consistent with using either iTorService.class.getName()
//or the variable constant
bindService(new Intent(ITorService.class.getName()),
bindService(iTorService,
mConnection, Context.BIND_AUTO_CREATE);
mIsBound = true;