removed debuggable settings in AndroidManifest and waitfordebugger calls in service code

svn:r23155
This commit is contained in:
Nathan Freitas 2010-09-09 20:42:14 +00:00
parent 9258248a31
commit 02adc301b3
2 changed files with 3 additions and 4 deletions

View File

@ -5,7 +5,7 @@
<uses-permission android:name="android.permission.INTERNET" />
<application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="true">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".Orbot"
android:theme="@android:style/Theme.NoTitleBar">
@ -33,8 +33,7 @@
<activity android:name=".AppManager" android:label="@string/app_name"/>
<activity android:name=".WizardActivity" android:label="@string/app_name"/>
<!-- <service android:name=".service.TorService" android:process=":remote"> -->
<service android:name=".service.TorService">
<service android:name=".service.TorService" android:process=":remote">
<intent-filter>
<action android:name="org.torproject.android.service.ITorService" />
<action android:name="org.torproject.android.service.TOR_SERVICE" />

View File

@ -213,7 +213,7 @@ public class TorTransProxy {
public static int setTransparentProxyingByApp(Context context, TorifiedApp[] apps, boolean forceAll) throws Exception
{
android.os.Debug.waitForDebugger();
//android.os.Debug.waitForDebugger();
String baseDir = findBaseDir();