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"
|
|
|
|
package="org.torproject.android"
|
2010-06-14 22:10:53 +00:00
|
|
|
android:versionName="0.2.2.13-orbot-alpha-0.0.8" android:versionCode="2">
|
2010-02-08 20:39:42 +00:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2010-03-06 04:11:36 +00:00
|
|
|
|
|
|
|
<!-- <uses-permission android:name="android.permission.WRITE_SETTINGS" /> -->
|
|
|
|
<!-- <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> -->
|
2009-10-21 23:17:45 +00:00
|
|
|
|
2010-05-26 14:12:27 +00:00
|
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="false">
|
2010-02-08 20:39:42 +00:00
|
|
|
<activity android:name=".Orbot"
|
2010-02-10 07:01:11 +00:00
|
|
|
android:theme="@android:style/Theme.NoTitleBar"
|
|
|
|
>
|
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>
|
|
|
|
</activity>
|
|
|
|
<activity android:name=".SettingsPreferences" android:label="@string/app_name">
|
2009-10-21 23:17:45 +00:00
|
|
|
</activity>
|
2009-11-30 16:39:13 +00:00
|
|
|
|
|
|
|
|
2010-05-26 14:12:27 +00:00
|
|
|
<service android:name=".service.TorService" android:process=":remote" android:debuggable="false">
|
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>
|
|
|
|
|
|
|
|
|
2009-10-21 23:17:45 +00:00
|
|
|
</application>
|
2010-02-08 20:39:42 +00:00
|
|
|
<uses-sdk android:minSdkVersion="3"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-10-21 23:17:45 +00:00
|
|
|
|
2010-05-26 14:12:27 +00:00
|
|
|
</manifest>
|