updated params for tuning, including largeHeap=true
This commit is contained in:
parent
21c27972d9
commit
eb3f95c31a
|
@ -1,8 +1,8 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="org.torproject.android"
|
package="org.torproject.android"
|
||||||
android:versionName="0.2.3.25-1.0.12-alpha-1"
|
android:versionName="v12 alpha 2 (Tor 0.2.4.10-alpha)"
|
||||||
android:versionCode="53"
|
android:versionCode="54"
|
||||||
android:installLocation="auto"
|
android:installLocation="auto"
|
||||||
>
|
>
|
||||||
<uses-permission android:name="android.permission.INTERNET" />
|
<uses-permission android:name="android.permission.INTERNET" />
|
||||||
|
@ -15,6 +15,10 @@
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:configChanges="locale|orientation|screenSize"
|
android:configChanges="locale|orientation|screenSize"
|
||||||
android:theme="@style/Theme.Sherlock"
|
android:theme="@style/Theme.Sherlock"
|
||||||
|
android:largeHeap="true"
|
||||||
|
android:persistent="true"
|
||||||
|
android:allowBackup="false"
|
||||||
|
android:allowClearUserData="true"
|
||||||
>
|
>
|
||||||
|
|
||||||
<activity android:name=".Orbot" android:configChanges="orientation|screenSize">
|
<activity android:name=".Orbot" android:configChanges="orientation|screenSize">
|
||||||
|
@ -44,6 +48,17 @@
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
<action android:name="org.torproject.android.START_TOR" />
|
<action android:name="org.torproject.android.START_TOR" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
|
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.SEND" />
|
||||||
|
|
||||||
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
|
<category android:name="android.intent.category.ALTERNATIVE" />
|
||||||
|
<category android:name="android.intent.category.SELECTED_ALTERNATIVE" />
|
||||||
|
|
||||||
|
<data android:mimeType="*/*" />
|
||||||
|
</intent-filter>
|
||||||
|
|
||||||
</activity>
|
</activity>
|
||||||
|
|
||||||
<activity android:name=".wizard.LotsaText"/>
|
<activity android:name=".wizard.LotsaText"/>
|
||||||
|
@ -58,6 +73,7 @@
|
||||||
<service android:enabled="true"
|
<service android:enabled="true"
|
||||||
android:name=".service.TorService"
|
android:name=".service.TorService"
|
||||||
android:exported="false"
|
android:exported="false"
|
||||||
|
android:process=":orbot"
|
||||||
>
|
>
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="org.torproject.android.service.ITorService" />
|
<action android:name="org.torproject.android.service.ITorService" />
|
||||||
|
|
Loading…
Reference in New Issue