karoo-headwind/app/src/main/AndroidManifest.xml
Tim Kluge 823fe3a8bb
Some checks failed
Build / build (push) Failing after 9m14s
Update pipeline
2025-05-30 13:13:29 +02: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="$BASE_URL$/manifest.json" />
</application>
</manifest>