diff options
Diffstat (limited to 'packages/SystemUI/AndroidManifest.xml')
-rw-r--r-- | packages/SystemUI/AndroidManifest.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/packages/SystemUI/AndroidManifest.xml b/packages/SystemUI/AndroidManifest.xml index a2452c4..64c54d9 100644 --- a/packages/SystemUI/AndroidManifest.xml +++ b/packages/SystemUI/AndroidManifest.xml @@ -101,5 +101,21 @@ android:taskAffinity="com.android.systemui.net" android:excludeFromRecents="true" /> + <!-- started from ... somewhere --> + <activity + android:name=".Nyandroid" + android:exported="true" + android:label="Nyandroid" + android:icon="@drawable/nyandroid04" + android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" + android:hardwareAccelerated="true" + android:launchMode="singleInstance" + android:excludeFromRecents="true"> + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + <category android:name="android.intent.category.DEFAULT" /> + <category android:name="android.intent.category.DREAM" /> + </intent-filter> + </activity> </application> </manifest> |