2009-10-21 23:17:45 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-01-15 15:45:59 +00:00
|
|
|
package="org.torproject.android"
|
2013-07-18 02:16:25 +00:00
|
|
|
android:versionName="v12-alpha3-tor-0.2.4.10-alpha"
|
2013-04-03 19:49:07 +00:00
|
|
|
android:versionCode="55"
|
2012-01-15 15:45:59 +00:00
|
|
|
android:installLocation="auto"
|
|
|
|
>
|
2012-09-30 15:11:54 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
|
2013-02-07 08:24:01 +00:00
|
|
|
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="17"/>
|
|
|
|
|
2012-07-24 17:08:58 +00:00
|
|
|
<application android:name=".OrbotApp" android:icon="@drawable/ic_launcher"
|
2012-02-24 05:13:49 +00:00
|
|
|
android:label="@string/app_name"
|
2012-10-25 09:49:01 +00:00
|
|
|
android:configChanges="locale|orientation|screenSize"
|
|
|
|
android:theme="@style/Theme.Sherlock"
|
2013-02-12 07:27:31 +00:00
|
|
|
android:largeHeap="true"
|
|
|
|
android:persistent="true"
|
|
|
|
android:allowBackup="false"
|
|
|
|
android:allowClearUserData="true"
|
2013-04-03 19:49:07 +00:00
|
|
|
android:hardwareAccelerated="true"
|
2012-06-29 02:54:07 +00:00
|
|
|
>
|
2010-07-19 22:34:15 +00:00
|
|
|
|
2013-04-03 19:49:07 +00:00
|
|
|
<activity android:name=".Orbot" android:configChanges="orientation|screenSize"
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
>
|
2009-10-21 23:17:45 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2010-02-08 20:39:42 +00:00
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
</intent-filter>
|
2010-08-14 05:08:55 +00:00
|
|
|
|
2012-02-12 03:40:53 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data android:scheme="bridge" />
|
|
|
|
<data android:scheme="bridge+obfs" />
|
|
|
|
</intent-filter>
|
|
|
|
|
2010-08-14 05:08:55 +00:00
|
|
|
<intent-filter>
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<action android:name="org.torproject.android.REQUEST_HS_PORT" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<action android:name="org.torproject.android.START_TOR" />
|
|
|
|
</intent-filter>
|
2013-02-12 07:27:31 +00:00
|
|
|
|
|
|
|
<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>
|
|
|
|
|
2010-02-08 20:39:42 +00:00
|
|
|
</activity>
|
2011-07-24 19:38:41 +00:00
|
|
|
|
2011-10-28 15:25:12 +00:00
|
|
|
<activity android:name=".wizard.LotsaText"/>
|
|
|
|
<activity android:name=".wizard.Permissions"/>
|
|
|
|
<activity android:name=".wizard.TipsAndTricks"/>
|
|
|
|
<activity android:name=".wizard.ConfigureTransProxy"/>
|
2012-02-27 03:48:49 +00:00
|
|
|
<activity android:name=".wizard.ChooseLocaleWizardActivity"/>
|
2011-10-28 15:25:12 +00:00
|
|
|
|
|
|
|
<activity android:name=".settings.SettingsPreferences" android:label="@string/app_name"/>
|
|
|
|
<activity android:name=".settings.AppManager" android:label="@string/app_name"/>
|
2010-07-19 22:34:15 +00:00
|
|
|
|
2011-05-03 05:58:58 +00:00
|
|
|
<service android:enabled="true"
|
|
|
|
android:name=".service.TorService"
|
|
|
|
android:exported="false"
|
2013-02-12 07:27:31 +00:00
|
|
|
android:process=":orbot"
|
2011-05-03 05:58:58 +00:00
|
|
|
>
|
2010-02-08 20:39:42 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="org.torproject.android.service.ITorService" />
|
|
|
|
<action android:name="org.torproject.android.service.TOR_SERVICE" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
|
|
|
|
2011-05-03 05:58:58 +00:00
|
|
|
<receiver android:name=".OnBootReceiver">
|
|
|
|
<intent-filter>
|
2011-05-10 02:08:50 +00:00
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
<category android:name="android.intent.category.HOME" />
|
2011-05-03 05:58:58 +00:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2010-09-18 12:38:15 +00:00
|
|
|
|
2009-10-21 23:17:45 +00:00
|
|
|
</application>
|
2010-07-19 22:34:15 +00:00
|
|
|
|
2010-02-08 20:39:42 +00:00
|
|
|
|
2010-05-26 14:12:27 +00:00
|
|
|
</manifest>
|