Some checks failed
Build / build (push) Has been cancelled
* Add route distance data source, workout target indication * Update target range drawing * Fix powerbar is not redrawn in route progress mode * Update changelog * Change to v3 release action * Test release action * Update release parameters * Test BASE_URL parameter * Fix BASE_URL * Replace BASE_URL on build * Fix gradle task order * Only replace base url in manifest as part of ci build * Fix base url quotation
49 lines
1.8 KiB
XML
49 lines
1.8 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">
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
|
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/bar"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@drawable/bar"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.AppCompat">
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:exported="true"
|
|
android:theme="@style/SplashTheme">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<service
|
|
android:name=".ForegroundService"
|
|
android:enabled="true"
|
|
android:exported="true"/>
|
|
|
|
<service
|
|
android:name="de.timklge.karoopowerbar.KarooPowerbarExtension"
|
|
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>
|
|
|
|
<!-- Provide Karoo System with information about delivery of your app -->
|
|
<meta-data
|
|
android:name="io.hammerhead.karooext.MANIFEST_URL"
|
|
android:value="$BASE_URL$/manifest.json" />
|
|
</application>
|
|
|
|
|
|
</manifest> |