blob: 007e53074b443f4a48473f237f41e5f94909d9e0 [file] [log] [blame]
<!--suppress AndroidUnknownAttribute -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
coreApp="true"
package="projekt.interfacer"
android:sharedUserId="android.uid.system"
android:versionCode="60"
android:versionName="sixty"
tools:ignore="GradleOverrides">
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION"/>
<uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"/>
<uses-permission
android:name="android.permission.FORCE_STOP_PACKAGES"
tools:ignore="ProtectedPermissions"/>
<uses-permission
android:name="android.permission.DELETE_PACKAGES"
tools:ignore="ProtectedPermissions"/>
<uses-permission
android:name="android.permission.INSTALL_PACKAGES"
tools:ignore="ProtectedPermissions"/>
<uses-permission android:name="android.permission.INSTALL_GRANT_RUNTIME_PERMISSIONS"/>
<uses-permission android:name="android.permission.MODIFY_OVERLAYS"/>
<protected-broadcast android:name="projekt.interfacer.STATUS_CHANGED" />
<protected-broadcast android:name="projekt.interfacer.CALLER_AUTHORIZED" />
<application
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:label="Theme Interfacer"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@android:style/Theme.NoDisplay"
tools:ignore="GoogleAppIndexingWarning">
<service
android:name=".services.JobService"
android:exported="true"
android:permission="android.permission.MODIFY_OVERLAYS">
<intent-filter>
<action android:name="projekt.interfacer.INITIALIZE" />
</intent-filter>
</service>
</application>
</manifest>