add list of open source licenses

This commit is contained in:
Josia Pietsch 2025-01-11 23:15:50 +01:00
parent eff7cfda5e
commit 8fc69e10e9
Signed by: jrpie
GPG key ID: E70B571D66986A2D
7 changed files with 173 additions and 33 deletions

View file

@ -3,82 +3,88 @@
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"
<uses-permission
android:name="android.permission.QUERY_ALL_PACKAGES"
tools:ignore="QueryAllPackagesPermission" />
<uses-permission android:name="android.permission.ACCESS_HIDDEN_PROFILES" />
<uses-permission android:name="android.permission.EXPAND_STATUS_BAR" />
<application
android:name=".Application"
android:allowBackup="true"
android:enableOnBackInvokedCallback="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:enableOnBackInvokedCallback="true"
android:theme="@style/launcherBaseTheme"
tools:ignore="UnusedAttribute" >
tools:ignore="UnusedAttribute">
<activity
android:name=".ui.HomeActivity"
android:exported="true"
android:excludeFromRecents="true"
android:clearTaskOnLaunch="true"
android:configChanges="orientation|screenSize"
android:theme="@style/launcherHomeTheme"
android:launchMode="singleTask" >
android:excludeFromRecents="true"
android:exported="true"
android:launchMode="singleTask"
android:theme="@style/launcherHomeTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.HOME" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="de.jrpie.android.launcher.ui.tutorial.TutorialActivity"
android:configChanges="orientation|screenSize" >
</activity>
android:name=".ui.tutorial.TutorialActivity"
android:configChanges="orientation|screenSize" />
<activity
android:name="de.jrpie.android.launcher.ui.list.ListActivity"
android:name=".ui.list.ListActivity"
android:configChanges="orientation|screenSize"
android:windowSoftInputMode="adjustResize" >
</activity>
android:windowSoftInputMode="adjustResize" />
<activity
android:name="de.jrpie.android.launcher.ui.settings.SettingsActivity"
android:name=".ui.settings.SettingsActivity"
android:configChanges="orientation|screenSize"
android:windowSoftInputMode="adjustNothing"
android:exported="true" >
android:exported="true"
android:windowSoftInputMode="adjustNothing">
<intent-filter>
<action android:name="android.intent.action.APPLICATION_PREFERENCES"/>
<category android:name="android.intent.category.DEFAULT"/>
<action android:name="android.intent.action.APPLICATION_PREFERENCES" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".ui.LegalInfoActivity"
android:exported="false" />
<receiver android:name=".actions.lock.LauncherDeviceAdmin"
<receiver
android:name=".actions.lock.LauncherDeviceAdmin"
android:description="@string/device_admin_description"
android:exported="true"
android:label="@string/app_name"
android:description="@string/device_admin_description"
android:permission="android.permission.BIND_DEVICE_ADMIN">
<meta-data android:name="android.app.device_admin"
<meta-data
android:name="android.app.device_admin"
android:resource="@xml/device_admin_config" />
<intent-filter>
<action android:name="android.app.action.DEVICE_ADMIN_ENABLED" />
</intent-filter>
</receiver>
<service android:name=".actions.lock.LauncherAccessibilityService"
<service
android:name=".actions.lock.LauncherAccessibilityService"
android:exported="true"
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"
android:label="@string/accessibility_service_name">
android:label="@string/accessibility_service_name"
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE">
<intent-filter>
<action android:name="android.accessibilityservice.AccessibilityService" />
</intent-filter>
<meta-data
android:name="android.accessibilityservice"
android:resource="@xml/accessibility_service_config" />
</service>
</application>
</manifest>
</manifest>