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"
|
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
|
|
|
|
|
|
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name"
|
2009-11-30 16:39:13 +00:00
|
|
|
android:debuggable="false">
|
2009-10-21 23:17:45 +00:00
|
|
|
<activity android:name=".TorControlPanel"
|
|
|
|
android:label="@string/app_name">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2009-11-30 16:39:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<service android:name=".TorService" android:enabled="true" android:exported="true"/>
|
2009-10-21 23:17:45 +00:00
|
|
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|