-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
70 lines (59 loc) · 2.88 KB
/
Copy pathAndroidManifest.xml
File metadata and controls
70 lines (59 loc) · 2.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<manifest xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android">
<application tools:ignore="MissingApplicationIcon">
<activity android:name=".launch.LaunchActivity">
<meta-data android:name="android.app.shortcuts"
android:resource="@xml/shortcuts" />
</activity>
<activity android:name=".developer.DevPlaygroundActivity"
android:exported="true" />
<activity android:name=".developer.catalog.HAComposeCatalogActivity"
android:exported="false" />
<activity android:name=".developer.nfc.DebugNfcTagEmulatorActivity"
android:label="@string/debug_nfc_tag_emulator"
android:configChanges="orientation|screenSize"
android:exported="false" />
<!-- Disabled by default, DebugNfcTagEmulatorActivity enables it only while it is visible -->
<service
android:name=".developer.nfc.DebugNfcTagEmulatorService"
android:enabled="false"
android:exported="true"
android:permission="android.permission.BIND_NFC_SERVICE">
<intent-filter>
<action android:name="android.nfc.cardemulation.action.HOST_APDU_SERVICE" />
</intent-filter>
<meta-data
android:name="android.nfc.cardemulation.host_apdu_service"
android:resource="@xml/debug_nfc_tag_apduservice" />
</service>
<activity android:name=".developer.DemoExoPlayerActivity"
android:supportsPictureInPicture="true"
android:resizeableActivity="true"
android:exported="false"
android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|keyboard|keyboardHidden|navigation"
tools:ignore="UnusedAttribute" />
<!--
Use a no-action-bar theme to prevent overlapping with the action bar during tests.
-->
<activity
android:theme="@android:style/Theme.Material.Light.NoActionBar"
android:name="io.homeassistant.companion.android.HiltComponentActivity"
/>
<!--
Support for next.home-assistant.io links when developing (merged with non-next links in main manifest).
-->
<activity
android:name=".nfc.TagReaderActivity"
android:exported="true">
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:scheme="https"
android:host="next.home-assistant.io"
android:pathPrefix="/tag/" />
</intent-filter>
</activity>
</application>
</manifest>