|
@@ -3,34 +3,78 @@
|
|
|
package="me.yoqi.screenfilter"
|
|
|
android:versionCode="1"
|
|
|
android:versionName="1.0" >
|
|
|
-
|
|
|
+
|
|
|
<uses-sdk
|
|
|
android:minSdkVersion="8"
|
|
|
android:targetSdkVersion="21" />
|
|
|
- <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
|
|
|
|
|
|
+ <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
|
|
|
|
|
<application
|
|
|
android:allowBackup="true"
|
|
|
- android:icon="@drawable/ic_launcher"
|
|
|
- android:label="@string/app_name"
|
|
|
- android:theme="@style/AppTheme" >
|
|
|
- <activity android:name=".ScreenFilterActivity">
|
|
|
+ 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.intent.action.MAIN"/>
|
|
|
- <category android:name="android.intent.category.LAUNCHER"/>
|
|
|
+ <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
|
|
|
</intent-filter>
|
|
|
</activity>
|
|
|
<activity
|
|
|
- android:name=".SettingsActivity"
|
|
|
- android:label="@string/title_activity_settings" >
|
|
|
+ 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=".LocaleReceiver">
|
|
|
+
|
|
|
+ <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="com.twofortyfouram.locale.intent.action.FIRE_SETTING"/>
|
|
|
+ <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>
|
|
|
+</manifest>
|