karoo-headwind/app/src/main/AndroidManifest.xml
2025-01-03 00:19:26 +01:00

37 lines
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<application
android:allowBackup="true"
android:icon="@drawable/wind"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/Theme.AppCompat">
<activity
android:name="de.timklge.karooheadwind.MainActivity"
android:theme="@style/SplashTheme"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service
android:name="de.timklge.karooheadwind.KarooHeadwindExtension"
android:exported="true"
tools:ignore="ExportedService">
<intent-filter>
<action android:name="io.hammerhead.karooext.KAROO_EXTENSION" />
</intent-filter>
<meta-data
android:name="io.hammerhead.karooext.EXTENSION_INFO"
android:resource="@xml/extension_info" />
</service>
<meta-data
android:name="io.hammerhead.karooext.MANIFEST_URL"
android:value="https://github.com/timklge/karoo-headwind/releases/latest/download/manifest.json" />
</application>
</manifest>