mirror of
https://github.com/d4rken-org/capod.git
synced 2026-09-15 10:46:12 -04:00
* Add PUSH_NOTIFICATIONS permissions to AndroidManifest.xml for wearos Fixes https://github.com/d4rken-org/capod/issues/154 * Fix typo in AndroidManifest.xml for wearos app
46 lines
1.5 KiB
XML
46 lines
1.5 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"
|
|
package="eu.darken.capod">
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
|
|
|
<uses-feature android:name="android.hardware.type.watch" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:label="@string/app_name"
|
|
android:supportsRtl="true"
|
|
android:name=".App"
|
|
android:theme="@style/AppTheme">
|
|
<uses-library
|
|
android:name="com.google.android.wearable"
|
|
android:required="true" />
|
|
|
|
<meta-data
|
|
android:name="com.google.android.wearable.standalone"
|
|
android:value="true" />
|
|
|
|
<activity
|
|
android:name=".wear.ui.MainActivity"
|
|
android:exported="true"
|
|
android:theme="@style/AppThemeSplash"
|
|
android:label="@string/app_name">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<provider
|
|
android:name="androidx.startup.InitializationProvider"
|
|
android:authorities="${applicationId}.androidx-startup"
|
|
tools:node="remove" />
|
|
</application>
|
|
|
|
</manifest>
|