zenfone9: Add TileActivity for the QS Tiles

launch of the device settings page instead of app info on long press

Change-Id: Id667983794921c45a26e2bf6f2cfd306ce064c71
diff --git a/DeviceParts/AndroidManifest.xml b/DeviceParts/AndroidManifest.xml
index fce12c7..924a3a8 100644
--- a/DeviceParts/AndroidManifest.xml
+++ b/DeviceParts/AndroidManifest.xml
@@ -19,6 +19,15 @@
         tools:replace="android:appComponentFactory"
         android:supportsRtl="true" >
         <activity
+             android:name="org.omnirom.device.TileActivity"
+             android:taskAffinity=""
+             android:excludeFromRecents="true"
+             android:exported="true" >
+            <intent-filter>
+                <action android:name="android.service.quicksettings.action.QS_TILE_PREFERENCES"/>
+            </intent-filter>
+        </activity>
+        <activity
             android:name="org.omnirom.device.DeviceSettingsActivity"
             android:exported="false"
             android:label="@string/advanced_settings"
@@ -38,6 +47,10 @@
                 <!--<category android:name="android.intent.category.LAUNCHER" />-->
                 <category android:name="android.intent.category.DEFAULT" />
             </intent-filter>
+            <intent-filter>
+                <action android:name="org.omnirom.device.DEVICE_SETTING_PAGE"/>
+                <category android:name="android.intent.category.DEFAULT"/>
+            </intent-filter>
         </activity-alias>
         <activity
             android:name="org.omnirom.device.GestureSettingsActivity"