aboutsummaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml48
1 files changed, 24 insertions, 24 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 2537545..89fb231 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -3,40 +3,40 @@
package="org.theb.ssh">
<application android:icon="@drawable/icon"
android:label="@string/app_name">
- <provider class="HostDbProvider"
+ <provider android:name="HostDbProvider"
android:authorities="org.theb.provider.HostDb"/>
- <activity class="HostsList" android:label="@string/title_hosts_list">
+ <activity android:name="HostsList" android:label="@string/title_hosts_list">
<intent-filter>
- <action android:value="android.intent.action.MAIN" />
- <category android:value="android.intent.category.LAUNCHER" />
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
- <action android:value="android.intent.action.PICK" />
- <action android:value="android.intent.action.VIEW" />
- <action android:value="android.intent.action.EDIT" />
- <category android:value="android.intent.category.DEFAULT" />
- <type android:value="vnd.android.cursor.dir/vnd.theb.host" />
+ <action android:name="android.intent.action.PICK" />
+ <action android:name="android.intent.action.VIEW" />
+ <action android:name="android.intent.action.EDIT" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <data android:mimeType="vnd.android.cursor.dir/vnd.theb.host" />
</intent-filter>
</activity>
- <activity class="HostEditor" android:label="@string/title_host"
+ <activity android:name="HostEditor" android:label="@string/title_host"
android:theme="@android:style/Theme.Dialog">
<!-- This filter says that we can view or edit the data of
a single host -->
<intent-filter android:label="@string/resolve_edit">
- <action android:value="org.theb.ssh.action.EDIT_HOST" />
- <action android:value="org.theb.ssh.action.EDIT" />
+ <action android:name="org.theb.ssh.action.EDIT_HOST" />
+ <action android:name="org.theb.ssh.action.EDIT" />
<!-- DEFAULT: execute if being directly invoked. -->
- <category android:value="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.DEFAULT" />
<!-- ALTERNATIVE: show as an alternative action when the user is
working with this type of data. -->
- <category android:value="android.intent.category.ALTERNATIVE" />
+ <category android:name="android.intent.category.ALTERNATIVE" />
<!-- SELECTED_ALTERNATIVE: show as an alternative action the user
can perform when selecting this type of data. -->
- <category android:value="android.intent.category.SELECTED_ALTERNATIVE" />
+ <category android:name="android.intent.category.SELECTED_ALTERNATIVE" />
<type android:value="vnd.android.cursor.item/vnd.theb.host" />
</intent-filter>
@@ -44,32 +44,32 @@
<!-- This filter says that we can create a new note inside
of a directory of notes. -->
<intent-filter>
- <action android:value="android.intent.action.INSERT" />
- <category android:value="android.intent.category.DEFAULT" />
+ <action android:name="android.intent.action.INSERT" />
+ <category android:name="android.intent.category.DEFAULT" />
<type android:value="vnd.android.cursor.dir/vnd.theb.host" />
</intent-filter>
</activity>
- <activity class="SecureShell" android:label="@string/title_shell">
+ <activity android:name="SecureShell" android:label="@string/title_shell">
<!-- This filter says that we can connect to a host -->
<intent-filter android:label="@string/resolve_connect">
- <action android:value="org.theb.ssh.action.CONNECT_HOST" />
- <action android:value="android.intent.action.PICK" />
+ <action android:name="org.theb.ssh.action.CONNECT_HOST" />
+ <action android:name="android.intent.action.PICK" />
<!-- DEFAULT: execute if being directly invoked. -->
- <category android:value="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.DEFAULT" />
<type android:value="vnd.android.cursor.item/vnd.theb.host" />
</intent-filter>
</activity>
- <activity class="PasswordDialog" android:label="@string/title_password"
+ <activity android:name="PasswordDialog" android:label="@string/title_password"
android:theme="@android:style/Theme.Dialog">
</activity>
- <activity class="TouchEntropy" android:label="@string/title_entropy"
+ <activity android:name="TouchEntropy" android:label="@string/title_entropy"
android:theme="@android:style/Theme.Dialog">
</activity>
- <activity class="Pubkey" android:label="@string/title_pubkey"
+ <activity android:name="Pubkey" android:label="@string/title_pubkey"
android:theme="@android:style/Theme.Dialog">
</activity>
</application>