126 lines
5.0 KiB
XML
126 lines
5.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.torproject.android"
|
|
android:versionName="15.0.0-alpha-5"
|
|
android:versionCode="15005"
|
|
android:installLocation="auto"
|
|
>
|
|
|
|
<uses-sdk android:minSdkVersion="16" android:maxSdkVersion="22" android:targetSdkVersion="22"/>
|
|
<permission android:name="org.torproject.android.MANAGE_TOR"
|
|
android:label="@string/permission_manage_tor_label"
|
|
android:description="@string/permission_manage_tor_description"
|
|
android:protectionLevel="signature"/>
|
|
|
|
<uses-permission android:name="org.torproject.android.MANAGE_TOR"/>
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
|
<application android:name="org.torproject.android.OrbotApp" android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:description="@string/app_description"
|
|
android:configChanges="locale|orientation|screenSize"
|
|
android:theme="@style/CustomActionBarTheme"
|
|
android:allowBackup="false"
|
|
android:allowClearUserData="true"
|
|
android:persistent="true"
|
|
android:stopWithTask="false"
|
|
android:largeHeap="false"
|
|
>
|
|
|
|
<activity android:name=".OrbotMainActivity"
|
|
android:configChanges="orientation|screenSize"
|
|
android:excludeFromRecents="true"
|
|
android:launchMode="singleTop"
|
|
>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</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>
|
|
-->
|
|
<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" />
|
|
</intent-filter>
|
|
|
|
<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>
|
|
|
|
</activity>
|
|
|
|
|
|
<activity android:name=".ui.OrbotLogActivity"
|
|
android:configChanges="orientation|screenSize"
|
|
android:exported="false"
|
|
/>
|
|
|
|
<!--
|
|
This is for ensuring the background service still runs when/if the app is swiped away
|
|
-->
|
|
<activity
|
|
android:name=".service.DummyActivity"
|
|
android:theme="@android:style/Theme.NoDisplay"
|
|
android:enabled="true"
|
|
android:allowTaskReparenting="true"
|
|
android:noHistory="true"
|
|
android:excludeFromRecents="true"
|
|
android:alwaysRetainTaskState="false"
|
|
android:stateNotNeeded="true"
|
|
android:clearTaskOnLaunch="true"
|
|
android:finishOnTaskLaunch="true"
|
|
|
|
/>
|
|
|
|
|
|
<activity android:name=".ui.TipsAndTricks" android:exported="false"/>
|
|
<activity android:name=".ui.ChooseLocaleWizardActivity" android:exported="false"/>
|
|
|
|
<activity android:name=".settings.SettingsPreferences" android:label="@string/app_name"/>
|
|
<activity android:name=".settings.AppManager" android:label="@string/app_name"/>
|
|
|
|
<service android:enabled="true"
|
|
android:name=".service.TorService"
|
|
android:permission="org.torproject.android.MANAGE_TOR"
|
|
android:stopWithTask="false"
|
|
>
|
|
<intent-filter>
|
|
<action android:name="org.torproject.android.service.ITorService" />
|
|
<action android:name="org.torproject.android.service.TOR_SERVICE" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
<receiver android:name="org.torproject.android.service.OnBootReceiver">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
|
|
<action android:name="android.intent.action.MEDIA_MOUNTED"/>
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
|
|
<service android:name="org.torproject.android.vpn.OrbotVpnService"
|
|
android:permission="android.permission.BIND_VPN_SERVICE">
|
|
<intent-filter>
|
|
<action android:name="android.net.VpnService"/>
|
|
</intent-filter>
|
|
</service>
|
|
|
|
</application>
|
|
</manifest>
|