AndroidManifest.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:versionCode="16" android:versionName="0.8.6b" package="org.yaxim.androidclient">
  4. <uses-sdk android:targetSdkVersion="14" android:minSdkVersion="7"/>
  5. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  6. <uses-permission android:name="android.permission.INTERNET" />
  7. <uses-permission android:name="android.permission.VIBRATE" />
  8. <uses-permission android:name="android.permission.WAKE_LOCK" />
  9. <application android:icon="@drawable/icon"
  10. android:name=".YaximApplication"
  11. android:theme="@style/YaximDarkTheme"
  12. android:debuggable="true" android:label="@string/app_name">
  13. <activity android:name=".MainWindow" android:label="@string/app_name"
  14. android:configChanges="orientation|keyboardHidden">
  15. <intent-filter>
  16. <action android:name="android.intent.action.MAIN" />
  17. <category android:name="android.intent.category.LAUNCHER" />
  18. </intent-filter>
  19. <intent-filter android:icon="@drawable/icon" android:label="@string/app_name">
  20. <action android:name="android.intent.action.SEND"></action>
  21. <category android:name="android.intent.category.DEFAULT"></category>
  22. <data android:mimeType="text/*"></data>
  23. </intent-filter>
  24. <intent-filter android:icon="@drawable/icon" android:label="@string/app_name">
  25. <action android:name="android.intent.action.SENDTO" />
  26. <category android:name="android.intent.category.DEFAULT" />
  27. <data android:host="jabber" android:scheme="imto" />
  28. </intent-filter>
  29. </activity>
  30. <activity android:name=".chat.ChatWindow" android:label="@string/app_name"
  31. android:alwaysRetainTaskState="true">
  32. </activity>
  33. <activity android:name=".preferences.MainPrefs"
  34. android:label="@string/app_name">
  35. </activity>
  36. <activity android:name=".preferences.AccountPrefs"
  37. android:label="@string/app_name">
  38. </activity>
  39. <service android:name=".service.XMPPService">
  40. <intent-filter>
  41. <action android:name="de.hdmstuttgart.yaxim.XMPPSERVICE" />
  42. </intent-filter>
  43. </service>
  44. <receiver android:name=".service.YaximBroadcastReceiver">
  45. <intent-filter>
  46. <action android:name="android.intent.action.ACTION_SHUTDOWN" />
  47. <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
  48. </intent-filter>
  49. </receiver>
  50. <provider android:name=".data.ChatProvider"
  51. android:authorities="org.yaxim.androidclient.provider.Chats" />
  52. <provider android:name=".data.RosterProvider"
  53. android:authorities="org.yaxim.androidclient.provider.Roster" />
  54. <activity android:name="de.duenndns.ssl.MemorizingActivity" />
  55. </application>
  56. </manifest>