be056331f7
Dev profiles (name ends in -dev) get 'Doctate (Dev)' in the launcher; production profiles keep the plain 'Doctate'. The string resource @string/app_name is no longer the application-level label, only used for the complication entry where the launcher distinction is irrelevant. refs #3
88 lines
3.6 KiB
XML
88 lines
3.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" />
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
|
|
|
<uses-feature android:name="android.hardware.type.watch" />
|
|
<uses-feature android:name="android.hardware.microphone" android:required="true" />
|
|
|
|
<application
|
|
android:name=".DoctateApp"
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="${appLabel}"
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
|
android:supportsRtl="true"
|
|
android:theme="@android:style/Theme.DeviceDefault">
|
|
<uses-library
|
|
android:name="com.google.android.wearable"
|
|
android:required="true" />
|
|
<uses-library
|
|
android:name="wear-sdk"
|
|
android:required="false" />
|
|
|
|
<!--
|
|
Set to true if your app is Standalone, that is, it does not require the handheld
|
|
app to run.
|
|
-->
|
|
<meta-data
|
|
android:name="com.google.android.wearable.standalone"
|
|
android:value="true" />
|
|
|
|
<activity
|
|
android:name=".presentation.MainActivity"
|
|
android:exported="true"
|
|
android:launchMode="singleTask"
|
|
android:taskAffinity=""
|
|
android:theme="@style/MainActivityTheme.Starting">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<service
|
|
android:name=".tile.DoctateTileService"
|
|
android:description="@string/tile_description"
|
|
android:exported="true"
|
|
android:icon="@drawable/tile_preview"
|
|
android:label="@string/tile_label"
|
|
android:permission="com.google.android.wearable.permission.BIND_TILE_PROVIDER">
|
|
<intent-filter>
|
|
<action android:name="androidx.wear.tiles.action.BIND_TILE_PROVIDER" />
|
|
</intent-filter>
|
|
<meta-data
|
|
android:name="androidx.wear.tiles.PREVIEW"
|
|
android:resource="@drawable/tile_preview" />
|
|
</service>
|
|
|
|
<service
|
|
android:name=".sync.SyncService"
|
|
android:exported="false"
|
|
android:foregroundServiceType="dataSync" />
|
|
|
|
<service
|
|
android:name=".complication.DoctateComplicationService"
|
|
android:exported="true"
|
|
android:icon="@drawable/ic_complication"
|
|
android:label="@string/app_name"
|
|
android:permission="com.google.android.wearable.permission.BIND_COMPLICATION_PROVIDER">
|
|
<intent-filter>
|
|
<action android:name="android.support.wearable.complications.ACTION_COMPLICATION_UPDATE_REQUEST" />
|
|
</intent-filter>
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.SUPPORTED_TYPES"
|
|
android:value="SHORT_TEXT" />
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.UPDATE_PERIOD_SECONDS"
|
|
android:value="0" />
|
|
</service>
|
|
</application>
|
|
|
|
</manifest> |