-
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
127 lines (115 loc) · 5.32 KB
/
AndroidManifest.xml
File metadata and controls
127 lines (115 loc) · 5.32 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:name=".DevicesApplication"
android:allowBackup="true"
android:enableOnBackInvokedCallback="true"
android:fullBackupOnly="true"
android:icon="@mipmap/ic_launcher_rgb"
android:label="@string/app_name"
android:localeConfig="@xml/locales_config"
android:roundIcon="@mipmap/ic_launcher_rgb_round"
android:supportsRtl="true"
android:theme="@style/Theme.App.Starting"
android:usesCleartextTraffic="true">
<activity
android:name=".ui.MainActivity"
android:exported="true"
android:windowSoftInputMode="adjustResize"
android:launchMode="singleTop"
android:theme="@style/Theme.App.Starting">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<!-- Deep link: wled:// scheme handler -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="wled" />
</intent-filter>
<!-- Deep link: http://4.3.2.1 AP mode handler -->
<intent-filter android:autoVerify="false">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" android:host="4.3.2.1" />
</intent-filter>
</activity>
<activity
android:name=".widget.PresetWidgetConfigureActivity"
android:exported="true">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
</activity>
<receiver
android:name=".widget.WledWidgetReceiver"
android:exported="true"
android:label="@string/widget_single_device_name">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/wled_widget_info" />
</receiver>
<activity
android:name=".widget.WledWidgetConfigureActivity"
android:exported="true"
android:taskAffinity=""
android:excludeFromRecents="true"
android:noHistory="true"
android:theme="@style/Theme.AppCompat.DayNight.NoActionBar">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
</activity>
<receiver
android:name=".widget.PresetWidgetProvider"
android:exported="true"
android:label="@string/appwidget_text">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="ca.cgagnier.wlednativeandroid.widget.ACTION_TRIGGER_PRESET" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget_preset_info" />
</receiver>
<receiver
android:name=".widget.SmallPresetWidgetProvider"
android:exported="true"
android:label="WLED Small Presets">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="ca.cgagnier.wlednativeandroid.widget.ACTION_TRIGGER_PRESET" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget_preset_small_info" />
</receiver>
<service
android:name=".widget.PresetWidgetService"
android:permission="android.permission.BIND_REMOTEVIEWS"
android:exported="false" />
<!-- Device Controls (Quick Access) service for Android 11+ -->
<service
android:name=".service.controls.WledControlsService"
android:label="@string/app_name"
android:permission="android.permission.BIND_CONTROLS"
android:exported="true"
tools:targetApi="30">
<intent-filter>
<action android:name="android.service.controls.ControlsProviderService" />
</intent-filter>
</service>
</application>
</manifest>