2024-08-12 17:02:52 +09:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
|
|
|
|
|
<uses-feature android:name="android.hardware.telephony"
|
|
|
|
|
android:required="false" />
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
|
<uses-permission android:name="android.permission.CALL_PHONE" />
|
|
|
|
|
<uses-permission android:name="android.permission.EXPAND_STATUS_BAR" />
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"
|
|
|
|
|
android:maxSdkVersion="32" />
|
|
|
|
|
<uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
|
|
|
|
|
<uses-permission android:name="android.permission.SET_WALLPAPER" />
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_SETTINGS"
|
|
|
|
|
tools:ignore="ProtectedPermissions" />
|
|
|
|
|
<uses-permission android:name="com.android.alarm.permission.SET_ALARM"/>
|
2024-08-14 16:06:50 +09:00
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
2024-08-12 17:02:52 +09:00
|
|
|
|
2024-08-22 17:51:59 +09:00
|
|
|
<uses-permission android:name="android.permission.READ_CALL_LOG"/>
|
2024-08-12 17:02:52 +09:00
|
|
|
<!-- api 33+ -->
|
|
|
|
|
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
|
2024-08-13 18:22:27 +09:00
|
|
|
<uses-permission
|
|
|
|
|
android:name="android.permission.QUERY_ALL_PACKAGES"
|
|
|
|
|
tools:ignore="QueryAllPackagesPermission" />
|
2024-08-23 17:05:42 +09:00
|
|
|
<uses-permission
|
|
|
|
|
android:name="android.permission.READ_SMS"
|
|
|
|
|
tools:ignore="QueryAllPackagesPermission" />
|
2024-08-12 17:02:52 +09:00
|
|
|
<queries>
|
|
|
|
|
<intent>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
</intent>
|
|
|
|
|
</queries>
|
|
|
|
|
|
|
|
|
|
<application
|
|
|
|
|
android:name=".LunarLauncher"
|
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
|
android:roundIcon="@mipmap/ic_launcher"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:theme="@style/Theme.LunarLauncher"
|
|
|
|
|
android:excludeFromRecents="true"
|
2024-08-26 18:34:53 +09:00
|
|
|
android:clearTaskOnLaunch="true"
|
2024-08-12 17:02:52 +09:00
|
|
|
android:stateNotNeeded="true"
|
2024-08-14 18:14:44 +09:00
|
|
|
android:enableOnBackInvokedCallback="true"
|
2024-08-14 16:06:50 +09:00
|
|
|
android:largeHeap="true"
|
|
|
|
|
android:hardwareAccelerated="true"
|
2024-08-12 17:02:52 +09:00
|
|
|
android:screenOrientation="nosensor"
|
|
|
|
|
android:windowSoftInputMode="adjustResize"
|
|
|
|
|
android:requestLegacyExternalStorage="true">
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".LauncherActivity"
|
|
|
|
|
android:theme="@style/Theme.LunarLauncher.Starting"
|
2024-08-26 18:34:53 +09:00
|
|
|
android:launchMode="singleInstance"
|
2024-08-12 17:02:52 +09:00
|
|
|
android:windowSoftInputMode="adjustResize"
|
|
|
|
|
android:exported="true">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
<category android:name="android.intent.category.HOME" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".settings.SettingsActivity"
|
|
|
|
|
android:label="@string/lunar_settings"
|
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
|
android:exported="true">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.APPLICATION_PREFERENCES" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
|
<service
|
|
|
|
|
android:name=".feeds.rss.RssService"
|
|
|
|
|
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>
|
|
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
|
|
<provider
|
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
|
|
|
|
android:authorities="${applicationId}.fileprovider"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
|
android:resource="@xml/file_paths" />
|
|
|
|
|
</provider>
|
2024-08-26 18:34:53 +09:00
|
|
|
<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>
|
2024-08-12 17:02:52 +09:00
|
|
|
</application>
|
|
|
|
|
</manifest>
|