1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="me.yoqi.screenfilter"
- android:versionCode="2"
- android:versionName="1.0.1" >
- <uses-sdk
- android:minSdkVersion="8"
- android:targetSdkVersion="21" />
- <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
- <application
- android:allowBackup="true"
- android:icon="@drawable/icon"
- android:label="@string/app_name">
- <activity
- android:name="me.yoqi.screenfilter.ScreenFilterActivity"
- android:configChanges="keyboardHidden|orientation"
- android:excludeFromRecents="true"
- android:exported="true"
- android:label="@string/app_name"
- android:launchMode="singleTop"
- android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" >
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- <activity
- android:name="me.yoqi.screenfilter.ui.SettingsActivity"
- android:configChanges="keyboardHidden|orientation"
- android:excludeFromRecents="true"
- android:exported="true"
- android:label="@string/app_name"
- android:launchMode="singleTop" />
- <activity
- android:name="me.yoqi.screenfilter.ui.ScreenFilterWidgetConfigure"
- android:configChanges="keyboardHidden|orientation"
- android:excludeFromRecents="true"
- android:label="@string/app_name" >
- <intent-filter>
- <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
- </intent-filter>
- </activity>
- <activity
- android:name="me.yoqi.screenfilter.ui.LocaleEditActivity"
- android:configChanges="keyboardHidden|orientation"
- android:excludeFromRecents="true"
- android:exported="true"
- android:icon="@drawable/icon"
- android:label="@string/app_name" >
- <intent-filter>
- <action android:name="com.twofortyfouram.locale.intent.action.EDIT_SETTING" />
- </intent-filter>
- </activity>
- <receiver android:name="me.yoqi.screenfilter.receiver.LocaleReceiver" >
- <intent-filter>
- <action android:name="com.twofortyfouram.locale.intent.action.FIRE_SETTING" />
- </intent-filter>
- </receiver>
- <receiver android:name="me.yoqi.screenfilter.receiver.ScreenFilterWidget" >
- <intent-filter>
- <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
- <action android:name="com.haxor.ScreenFilter.ACTION_FILTER_TOGGLED" />
- </intent-filter>
- <meta-data
- android:name="android.appwidget.provider"
- android:resource="@xml/toggle_widget" />
- </receiver>
- <service
- android:name="me.yoqi.screenfilter.service.FilterService"
- android:label="@string/app_name" />
- </application>
- </manifest>
|