This commit is contained in:
lunaticbum
2024-08-26 18:34:53 +09:00
parent e1ec3c12d2
commit 55f2c3272c
5 changed files with 247 additions and 18 deletions
+11 -3
View File
@@ -40,7 +40,7 @@
android:label="@string/app_name"
android:theme="@style/Theme.LunarLauncher"
android:excludeFromRecents="true"
android:clearTaskOnLaunch="true"
android:clearTaskOnLaunch="true"
android:stateNotNeeded="true"
android:enableOnBackInvokedCallback="true"
android:largeHeap="true"
@@ -52,7 +52,7 @@
<activity
android:name=".LauncherActivity"
android:theme="@style/Theme.LunarLauncher.Starting"
android:launchMode="singleInstance"
android:launchMode="singleInstance"
android:windowSoftInputMode="adjustResize"
android:exported="true">
<intent-filter>
@@ -113,6 +113,14 @@
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
<service android:name=".utils.NLService"
android:label="@string/app_name"
android:enabled="true"
android:exported="true"
android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
<intent-filter>
<action android:name="android.service.notification.NotificationListenerService" />
</intent-filter>
</service>
</application>
</manifest>