zenfone6: Import OmniDisplayManager
From android-10 branch and add 2 commits
https://gerrit.omnirom.org/c/android_packages_apps_OmniDisplayManager/+/37671
https://gerrit.omnirom.org/c/android_packages_apps_OmniDisplayManager/+/37672/1
Change-Id: Ic6d450bbf3a27fb46f5e0029f035315551ef3c3b
diff --git a/OmniDisplayManager/AndroidManifest.xml b/OmniDisplayManager/AndroidManifest.xml
new file mode 100644
index 0000000..02edc69
--- /dev/null
+++ b/OmniDisplayManager/AndroidManifest.xml
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!--
+Copyright (C) 2017 The OmniROM Project
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>.
+-->
+
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="org.omnirom.omnidisplaymanager"
+ android:versionCode="1"
+ android:versionName="1.0"
+ android:sharedUserId="android.uid.system" >
+
+ <uses-sdk
+ android:minSdkVersion="28"
+ android:targetSdkVersion="28" />
+
+ <uses-permission android:name="android.permission.HARDWARE_TEST" />
+ <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
+
+ <application
+ android:label="@string/app_name"
+ android:icon="@drawable/omnirom_logo"
+ android:theme="@style/AppTheme" >
+ <activity
+ android:name="org.omnirom.omnidisplaymanager.ColorSettingsActivity"
+ android:label="@string/app_name"
+ android:launchMode="singleInstance" >
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </activity>
+
+ <receiver android:name="org.omnirom.omnidisplaymanager.Startup" >
+ <intent-filter android:priority="100" >
+ <action android:name="android.intent.action.BOOT_COMPLETED" />
+ </intent-filter>
+ </receiver>
+
+ <service
+ android:name=".DisplayManagerTileService"
+ android:icon="@drawable/ic_settings_displaymanager"
+ android:label="@string/display_manager_tile"
+ android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
+ <intent-filter>
+ <action
+ android:name="android.service.quicksettings.action.QS_TILE"/>
+ </intent-filter>
+ </service>
+
+ <service
+ android:name=".ReadingModeTileService"
+ android:icon="@drawable/ic_tile_reading_mode"
+ android:label="@string/reading_mode_title"
+ android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
+ <intent-filter>
+ <action
+ android:name="android.service.quicksettings.action.QS_TILE"/>
+ </intent-filter>
+ </service>
+ </application>
+</manifest>