This commit is contained in:
2025-08-20 17:08:17 +09:00
parent f7f71ca195
commit 2f63f8550a
14 changed files with 686 additions and 393 deletions
+163 -160
View File
@@ -57,17 +57,17 @@
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<!-- <queries>-->
<!-- <intent>-->
<!-- <action android:name="android.intent.action.MAIN" />-->
<!-- </intent>-->
<!-- </queries>-->
<!-- <queries>-->
<!-- <intent>-->
<!-- <action android:name="android.intent.action.SEARCH" />-->
<!-- <category android:name="android.intent.category.DEFAULT" />-->
<!-- </intent>-->
<!-- </queries>-->
<!-- <queries>-->
<!-- <intent>-->
<!-- <action android:name="android.intent.action.MAIN" />-->
<!-- </intent>-->
<!-- </queries>-->
<!-- <queries>-->
<!-- <intent>-->
<!-- <action android:name="android.intent.action.SEARCH" />-->
<!-- <category android:name="android.intent.category.DEFAULT" />-->
<!-- </intent>-->
<!-- </queries>-->
<application
android:name=".LunaticLauncher"
android:icon="@drawable/ic_launcher"
@@ -79,6 +79,7 @@
android:stateNotNeeded="true"
android:enableOnBackInvokedCallback="true"
android:largeHeap="true"
android:extractNativeLibs="true"
android:networkSecurityConfig="@xml/network_security_config"
android:hardwareAccelerated="true"
android:usesCleartextTraffic="true"
@@ -90,7 +91,7 @@
<!-- android:excludeFromRecents="true"-->
<!-- portrait|reversePortrait|userPortrait|sensorPortrait-->
<!-- portrait|reversePortrait|userPortrait|sensorPortrait-->
<activity
android:name=".LauncherActivity"
android:theme="@style/Theme.LunarLauncher.Starting"
@@ -117,26 +118,26 @@
</intent-filter>
</activity>
<!-- <activity-->
<!-- android:name=".SearchAbleActivity"-->
<!-- android:theme="@style/Theme.LunarLauncher.Starting"-->
<!-- android:launchMode="singleTop"-->
<!-- android:screenOrientation="userPortrait"-->
<!-- android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|screenLayout|layoutDirection|navigation"-->
<!-- android:windowSoftInputMode="adjustResize"-->
<!-- android:enabled="true"-->
<!-- android:exported="true">-->
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.WEB_SEARCH"/>-->
<!-- <category android:name="android.intent.category.DEFAULT" />-->
<!-- </intent-filter>-->
<!-- <meta-data-->
<!-- android:name="android.app.searchable"-->
<!-- android:resource="@xml/searchable" />-->
<!-- </activity>-->
<!-- <activity-->
<!-- android:name=".SearchAbleActivity"-->
<!-- android:theme="@style/Theme.LunarLauncher.Starting"-->
<!-- android:launchMode="singleTop"-->
<!-- android:screenOrientation="userPortrait"-->
<!-- android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|screenLayout|layoutDirection|navigation"-->
<!-- android:windowSoftInputMode="adjustResize"-->
<!-- android:enabled="true"-->
<!-- android:exported="true">-->
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.WEB_SEARCH"/>-->
<!-- <category android:name="android.intent.category.DEFAULT" />-->
<!-- </intent-filter>-->
<!-- <meta-data-->
<!-- android:name="android.app.searchable"-->
<!-- android:resource="@xml/searchable" />-->
<!-- </activity>-->
<service
android:name=".helpers.BluetoothManager"
android:name=".helpers.ForeGroundService"
android:enabled="true"
android:exported="false" />
<service
@@ -150,16 +151,16 @@
android:name="android.service.wallpaper"
android:resource="@xml/wallpaper" />
</service>
<!-- <activity-->
<!-- android:name=".apps.AppDrawer"-->
<!-- android:label="@string/lunar_settings"-->
<!-- android:launchMode="singleTask"-->
<!-- android:excludeFromRecents="true"-->
<!-- android:exported="true">-->
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.APPLICATION_PREFERENCES" />-->
<!-- </intent-filter>-->
<!-- </activity>-->
<!-- <activity-->
<!-- android:name=".apps.AppDrawer"-->
<!-- android:label="@string/lunar_settings"-->
<!-- android:launchMode="singleTask"-->
<!-- android:excludeFromRecents="true"-->
<!-- android:exported="true">-->
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.APPLICATION_PREFERENCES" />-->
<!-- </intent-filter>-->
<!-- </activity>-->
<activity
android:name=".tokiz.Settings"
@@ -169,35 +170,35 @@
android:exported="true">
</activity>
<!-- <activity-->
<!-- android:name=".settings.SettingsActivity"-->
<!-- android:label="@string/lunar_settings"-->
<!-- android:launchMode="singleTask"-->
<!-- android:excludeFromRecents="true"-->
<!-- android:exported="true">-->
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.APPLICATION_PREFERENCES" />-->
<!-- </intent-filter>-->
<!-- </activity>-->
<!-- <activity-->
<!-- android:name=".behavior.Behavior"-->
<!-- android:label="@string/lunar_settings"-->
<!-- android:launchMode="singleTask"-->
<!-- android:excludeFromRecents="true"-->
<!-- android:exported="true">-->
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.APPLICATION_PREFERENCES" />-->
<!-- </intent-filter>-->
<!-- </activity>-->
<activity
android:name=".settings.SettingsActivity"
android:label="@string/lunar_settings"
android:launchMode="singleTask"
android:excludeFromRecents="true"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.APPLICATION_PREFERENCES" />
</intent-filter>
</activity>
<!-- <activity-->
<!-- android:name=".behavior.Behavior"-->
<!-- android:label="@string/lunar_settings"-->
<!-- android:launchMode="singleTask"-->
<!-- android:excludeFromRecents="true"-->
<!-- android:exported="true">-->
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.APPLICATION_PREFERENCES" />-->
<!-- </intent-filter>-->
<!-- </activity>-->
<!-- <receiver android:name=".helpers.HeadsetActionButtonReceiver"-->
<!-- android:enabled="true"-->
<!-- android:exported="true" >-->
<!-- <intent-filter-->
<!-- android:priority="2147483647">-->
<!-- <action android:name="android.intent.action.MEDIA_BUTTON"/>-->
<!-- </intent-filter>-->
<!-- </receiver>-->
<!-- <receiver android:name=".helpers.HeadsetActionButtonReceiver"-->
<!-- android:enabled="true"-->
<!-- android:exported="true" >-->
<!-- <intent-filter-->
<!-- android:priority="2147483647">-->
<!-- <action android:name="android.intent.action.MEDIA_BUTTON"/>-->
<!-- </intent-filter>-->
<!-- </receiver>-->
<!-- <service android:name=".MediaButtonService"-->
<!-- android:exported="true">-->
@@ -212,52 +213,52 @@
android:permission="android.permission.BIND_JOB_SERVICE"
android:exported="false"/>
<!-- <service-->
<!-- android:name=".helpers.LockService"-->
<!-- android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"-->
<!-- android:exported="false">-->
<!-- <intent-filter>-->
<!-- <action android:name="android.accessibilityservice.AccessibilityService" />-->
<!-- </intent-filter>-->
<!-- <meta-data-->
<!-- android:name="android.accessibilityservice"-->
<!-- android:resource="@xml/lock_service" />-->
<!-- </service>-->
<!-- <service-->
<!-- android:name=".helpers.LockService"-->
<!-- android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"-->
<!-- android:exported="false">-->
<!-- <intent-filter>-->
<!-- <action android:name="android.accessibilityservice.AccessibilityService" />-->
<!-- </intent-filter>-->
<!-- <meta-data-->
<!-- android:name="android.accessibilityservice"-->
<!-- android:resource="@xml/lock_service" />-->
<!-- </service>-->
<!-- <receiver-->
<!-- android:name=".helpers.AdminReceiver"-->
<!-- android:label="@string/app_name"-->
<!-- android:description="@string/device_admin_description"-->
<!-- android:permission="android.permission.BIND_DEVICE_ADMIN"-->
<!-- android:exported="false">-->
<!-- <meta-data-->
<!-- android:name="android.app.device_admin"-->
<!-- android:resource="@xml/device_admin" />-->
<!-- <intent-filter>-->
<!-- <action android:name="android.app.action.DEVICE_ADMIN_ENABLED" />-->
<!-- </intent-filter>-->
<!-- </receiver>-->
<!-- <receiver-->
<!-- android:name=".helpers.AdminReceiver"-->
<!-- android:label="@string/app_name"-->
<!-- android:description="@string/device_admin_description"-->
<!-- android:permission="android.permission.BIND_DEVICE_ADMIN"-->
<!-- android:exported="false">-->
<!-- <meta-data-->
<!-- android:name="android.app.device_admin"-->
<!-- android:resource="@xml/device_admin" />-->
<!-- <intent-filter>-->
<!-- <action android:name="android.app.action.DEVICE_ADMIN_ENABLED" />-->
<!-- </intent-filter>-->
<!-- </receiver>-->
<!-- <activity-->
<!-- android:name=".home.RssViewerActivity"-->
<!-- android:configChanges="keyboardHidden|orientation|screenSize"-->
<!-- android:hardwareAccelerated="true"-->
<!-- android:launchMode="singleTask"-->
<!-- android:exported="true"-->
<!-- android:excludeFromRecents="true"-->
<!-- android:theme="@style/FinestWebViewTheme.Fullscreen" >-->
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.VIEW" />-->
<!-- <category android:name="android.intent.category.DEFAULT" />-->
<!-- <data android:scheme="file"/>-->
<!-- <data android:scheme="content"/>-->
<!-- <data android:mimeType="text/html"/>-->
<!-- <data android:mimeType="text/plain"/>-->
<!-- <data android:mimeType="text/xml"/>-->
<!-- <data android:mimeType="application/xhtml+xml"/>-->
<!-- <data android:mimeType="application/vnd.wap.xhtml+xml"/>-->
<!-- </intent-filter>-->
<!-- </activity>-->
<!-- <activity-->
<!-- android:name=".home.RssViewerActivity"-->
<!-- android:configChanges="keyboardHidden|orientation|screenSize"-->
<!-- android:hardwareAccelerated="true"-->
<!-- android:launchMode="singleTask"-->
<!-- android:exported="true"-->
<!-- android:excludeFromRecents="true"-->
<!-- android:theme="@style/FinestWebViewTheme.Fullscreen" >-->
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.VIEW" />-->
<!-- <category android:name="android.intent.category.DEFAULT" />-->
<!-- <data android:scheme="file"/>-->
<!-- <data android:scheme="content"/>-->
<!-- <data android:mimeType="text/html"/>-->
<!-- <data android:mimeType="text/plain"/>-->
<!-- <data android:mimeType="text/xml"/>-->
<!-- <data android:mimeType="application/xhtml+xml"/>-->
<!-- <data android:mimeType="application/vnd.wap.xhtml+xml"/>-->
<!-- </intent-filter>-->
<!-- </activity>-->
<provider
android:name="androidx.core.content.FileProvider"
@@ -269,55 +270,57 @@
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
<!-- <service android:name=".receiver.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>-->
<!-- <service android:name="bums.lunatic.launcher.workers.LocationUpdateService" />-->
<!-- <receiver android:name=".LauncherActivity$EndCallReceiver"-->
<!-- android:enabled="true"-->
<!-- android:exported="true">-->
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.PHONE_STATE" />-->
<!-- </intent-filter>-->
<!-- </receiver>-->
<!-- <receiver android:name=".LauncherActivity$SMSReceiver"-->
<!-- android:exported="true"-->
<!-- android:enabled="true"-->
<!-- android:permission="android.permission.BROADCAST_SMS">-->
<!-- <intent-filter>-->
<!-- <action android:name="android.provider.Telephony.SMS_RECEIVED" />-->
<!-- <action android:name="android.provider.Telephony.MMS_RECEIVED" />-->
<!-- </intent-filter>-->
<!-- </receiver>-->
<service android:name=".receiver.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>
<!-- <receiver-->
<!-- android:exported="true"-->
<!-- android:enabled="true"-->
<!-- android:name=".receiver.PackageEventReceiver"-->
<!-- >-->
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.PACKAGE_REPLACED"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_INSTALL"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_ADDED"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_CHANGED"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_DATA_CLEARED"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_FIRST_LAUNCH"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_FULLY_REMOVED"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_INSTALL"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_NEEDS_VERIFICATION"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_REMOVED"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_REPLACED"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_RESTARTED"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_VERIFIED"/>-->
<!-- <data android:scheme="package" />-->
<!-- </intent-filter>-->
<!-- </receiver>-->
<!-- <service android:name="bums.lunatic.launcher.workers.LocationUpdateService" />-->
<!-- <receiver android:name=".LauncherActivity$EndCallReceiver"-->
<!-- android:enabled="true"-->
<!-- android:exported="true">-->
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.PHONE_STATE" />-->
<!-- </intent-filter>-->
<!-- </receiver>-->
<!-- <receiver android:name=".LauncherActivity$SMSReceiver"-->
<!-- android:exported="true"-->
<!-- android:enabled="true"-->
<!-- android:permission="android.permission.BROADCAST_SMS">-->
<!-- <intent-filter>-->
<!-- <action android:name="android.provider.Telephony.SMS_RECEIVED" />-->
<!-- <action android:name="android.provider.Telephony.MMS_RECEIVED" />-->
<!-- </intent-filter>-->
<!-- </receiver>-->
<!-- <receiver-->
<!-- android:exported="true"-->
<!-- android:enabled="true"-->
<!-- android:name=".receiver.PackageEventReceiver"-->
<!-- >-->
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.PACKAGE_REPLACED"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_INSTALL"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_ADDED"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_CHANGED"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_DATA_CLEARED"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_FIRST_LAUNCH"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_FULLY_REMOVED"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_INSTALL"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_NEEDS_VERIFICATION"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_REMOVED"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_REPLACED"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_RESTARTED"/>-->
<!-- <action android:name="android.intent.action.PACKAGE_VERIFIED"/>-->
<!-- <data android:scheme="package" />-->
<!-- </intent-filter>-->
<!-- </receiver>-->
</application>
</manifest>