updated params for tuning, including largeHeap=true

This commit is contained in:
n8fr8 2013-02-12 14:27:31 +07:00
parent 21c27972d9
commit eb3f95c31a
1 changed files with 18 additions and 2 deletions

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.torproject.android"
android:versionName="0.2.3.25-1.0.12-alpha-1"
android:versionCode="53"
android:versionName="v12 alpha 2 (Tor 0.2.4.10-alpha)"
android:versionCode="54"
android:installLocation="auto"
>
<uses-permission android:name="android.permission.INTERNET" />
@ -15,6 +15,10 @@
android:label="@string/app_name"
android:configChanges="locale|orientation|screenSize"
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">
@ -44,6 +48,17 @@
<category android:name="android.intent.category.DEFAULT" />
<action android:name="org.torproject.android.START_TOR" />
</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 android:name=".wizard.LotsaText"/>
@ -58,6 +73,7 @@
<service android:enabled="true"
android:name=".service.TorService"
android:exported="false"
android:process=":orbot"
>
<intent-filter>
<action android:name="org.torproject.android.service.ITorService" />