blob: 5c097d3951b131454f728626b8a0c357fe063914 [file] [log] [blame]
Alexander Martinz1dc6b312020-02-04 17:32:06 +01001<!--
Alexander Martinz42f46722022-12-20 16:56:55 +01002 Copyright (C) 2020-2022 SHIFT GmbH
Alexander Martinz1dc6b312020-02-04 17:32:06 +01003
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"
Alexander Martinz42f46722022-12-20 16:56:55 +010018 package="eco.shift.partner.customization">
Alexander Martinz1dc6b312020-02-04 17:32:06 +010019
20 <application android:label="@string/app_name">
Alexander Martinz42f46722022-12-20 16:56:55 +010021 <receiver android:name=".LauncherCustomizationReceiver"
22 android:exported="true">
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
Alexander Martinz42f46722022-12-20 16:56:55 +010028 <receiver android:name=".SuwCustomizationReceiver"
29 android:exported="true">
Alexander Martinz2f455ed2020-02-04 17:39:07 +010030 <intent-filter>
31 <action android:name="com.android.setupwizard.action.PARTNER_CUSTOMIZATION" />
Alexander Martinz1dc6b312020-02-04 17:32:06 +010032 </intent-filter>
33 </receiver>
34
35 </application>
36</manifest>