AndroidManifest.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="me.yoqi.screenfilter"
  4. android:versionCode="2"
  5. android:versionName="1.0.1" >
  6. <uses-sdk
  7. android:minSdkVersion="8"
  8. android:targetSdkVersion="21" />
  9. <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
  10. <application
  11. android:allowBackup="true"
  12. android:icon="@drawable/icon"
  13. android:label="@string/app_name">
  14. <activity
  15. android:name="me.yoqi.screenfilter.ScreenFilterActivity"
  16. android:configChanges="keyboardHidden|orientation"
  17. android:excludeFromRecents="true"
  18. android:exported="true"
  19. android:label="@string/app_name"
  20. android:launchMode="singleTop"
  21. android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" >
  22. <intent-filter>
  23. <action android:name="android.intent.action.MAIN" />
  24. <category android:name="android.intent.category.LAUNCHER" />
  25. </intent-filter>
  26. </activity>
  27. <activity
  28. android:name="me.yoqi.screenfilter.ui.SettingsActivity"
  29. android:configChanges="keyboardHidden|orientation"
  30. android:excludeFromRecents="true"
  31. android:exported="true"
  32. android:label="@string/app_name"
  33. android:launchMode="singleTop" />
  34. <activity
  35. android:name="me.yoqi.screenfilter.ui.ScreenFilterWidgetConfigure"
  36. android:configChanges="keyboardHidden|orientation"
  37. android:excludeFromRecents="true"
  38. android:label="@string/app_name" >
  39. <intent-filter>
  40. <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
  41. </intent-filter>
  42. </activity>
  43. <activity
  44. android:name="me.yoqi.screenfilter.ui.LocaleEditActivity"
  45. android:configChanges="keyboardHidden|orientation"
  46. android:excludeFromRecents="true"
  47. android:exported="true"
  48. android:icon="@drawable/icon"
  49. android:label="@string/app_name" >
  50. <intent-filter>
  51. <action android:name="com.twofortyfouram.locale.intent.action.EDIT_SETTING" />
  52. </intent-filter>
  53. </activity>
  54. <receiver android:name="me.yoqi.screenfilter.receiver.LocaleReceiver" >
  55. <intent-filter>
  56. <action android:name="com.twofortyfouram.locale.intent.action.FIRE_SETTING" />
  57. </intent-filter>
  58. </receiver>
  59. <receiver android:name="me.yoqi.screenfilter.receiver.ScreenFilterWidget" >
  60. <intent-filter>
  61. <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
  62. <action android:name="com.haxor.ScreenFilter.ACTION_FILTER_TOGGLED" />
  63. </intent-filter>
  64. <meta-data
  65. android:name="android.appwidget.provider"
  66. android:resource="@xml/toggle_widget" />
  67. </receiver>
  68. <service
  69. android:name="me.yoqi.screenfilter.service.FilterService"
  70. android:label="@string/app_name" />
  71. </application>
  72. </manifest>