blob: 5fb5e51ce4f1e4ffa1de4220be0364ed6664fa9a [file] [log] [blame]
Alexander Martinz1dc6b312020-02-04 17:32:06 +01001<!--
2 Copyright (C) 2020 SHIFT GmbH
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15 -->
16<manifest xmlns:android="http://schemas.android.com/apk/res/android"
17 xmlns:tools="http://schemas.android.com/tools"
18 package="com.shiftos.partner.customization">
19
20 <application android:label="@string/app_name">
21
Joey462535c2020-10-28 10:55:00 +010022 <receiver android:name=".LauncherCustomizationReceiver">
Alexander Martinz1dc6b312020-02-04 17:32:06 +010023 <intent-filter>
Alexander Martinz2f455ed2020-02-04 17:39:07 +010024 <action android:name="com.android.launcher3.action.PARTNER_CUSTOMIZATION" />
25 </intent-filter>
26 </receiver>
27
Joey462535c2020-10-28 10:55:00 +010028 <receiver android:name=".SuwCustomizationReceiver">
Alexander Martinz2f455ed2020-02-04 17:39:07 +010029 <intent-filter>
30 <action android:name="com.android.setupwizard.action.PARTNER_CUSTOMIZATION" />
Alexander Martinz1dc6b312020-02-04 17:32:06 +010031 </intent-filter>
32 </receiver>
33
34 </application>
35</manifest>