blob: dd9d634441d5687e948d5427959e082c063cb5cf [file] [log] [blame]
Adrien BĂ©raud0e0feef2018-02-13 16:32:06 +01001<?xml version="1.0" encoding="utf-8"?><!--
2Copyright (C) 2018 Savoir-faire Linux Inc.
3
4Author: Adrien Beraud <adrien.beraud@savoirfairelinux.com>
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 3 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program. If not, see <https://www.gnu.org/licenses/>.
18-->
19<manifest xmlns:android="http://schemas.android.com/apk/res/android"
20 xmlns:tools="http://schemas.android.com/tools"
21 package="cx.ring">
22
23 <application
24 android:name=".application.RingApplicationFirebase"
25 tools:ignore="UnusedAttribute">
26
27 <service
28 android:name=".services.RingFirebaseMessagingService"
29 android:exported="false">
30 <intent-filter>
31 <action android:name="com.google.firebase.MESSAGING_EVENT" />
32 </intent-filter>
33 </service>
34
35 <service
36 android:name=".services.RingFirebaseInstanceIdService"
37 android:exported="false">
38 <intent-filter>
39 <action android:name="com.google.firebase.INSTANCE_ID_EVENT" />
40 </intent-filter>
41 </service>
42
43 </application>
44
45</manifest>