AndroidManifest.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. package="eu.siacs.conversations">
  5. <application tools:ignore="GoogleAppIndexingWarning">
  6. <activity
  7. android:name=".ui.ManageAccountActivity"
  8. android:label="@string/title_activity_manage_accounts"
  9. android:launchMode="singleTask" />
  10. <activity
  11. android:name=".ui.WelcomeActivity"
  12. android:label="@string/app_name"
  13. android:launchMode="singleTask" />
  14. <activity
  15. android:name=".ui.PickServerActivity"
  16. android:label="@string/create_new_account"
  17. android:launchMode="singleTask" />
  18. <activity
  19. android:name=".ui.MagicCreateActivity"
  20. android:label="@string/create_new_account"
  21. android:launchMode="singleTask" />
  22. <activity
  23. android:name=".ui.ImportBackupActivity"
  24. android:label="@string/restore_backup"
  25. android:launchMode="singleTask">
  26. <intent-filter>
  27. <action android:name="android.intent.action.VIEW" />
  28. <category android:name="android.intent.category.DEFAULT" />
  29. <data android:mimeType="application/vnd.conversations.backup" />
  30. <data android:scheme="content" />
  31. </intent-filter>
  32. <intent-filter>
  33. <action android:name="android.intent.action.VIEW" />
  34. <category android:name="android.intent.category.DEFAULT" />
  35. <data android:mimeType="application/vnd.conversations.backup" />
  36. <data android:scheme="file" />
  37. </intent-filter>
  38. </activity>
  39. </application>
  40. </manifest>