comparison gara/android/firebase-cloud-messaging/app/src/main/AndroidManifest.xml @ 47:829623189a57

[Gara] Android commit. Bazelfied it.
author MrJuneJune <me@mrjunejune.com>
date Sat, 13 Dec 2025 14:20:34 -0800
parents
children
comparison
equal deleted inserted replaced
46:b9a40c633c93 47:829623189a57
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.example.myapplication">
4
5 <!-- Bazel doesn't merge perimissions from libraries / aars, so these are
6 necessary in the AndroidManifest.xml for the top-level android_binary -->
7 <uses-permission android:name="android.permission.INTERNET" />
8 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
9 <uses-permission android:name="android.permission.WAKE_LOCK" />
10 <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
11
12 <application
13 android:allowBackup="true"
14 android:icon="@mipmap/ic_launcher"
15 android:label="@string/app_name"
16 android:roundIcon="@mipmap/ic_launcher_round"
17 android:supportsRtl="true"
18 android:theme="@style/AppTheme">
19
20 <activity android:name=".MainActivity">
21 <intent-filter>
22 <action android:name="android.intent.action.MAIN" />
23
24 <category android:name="android.intent.category.LAUNCHER" />
25 </intent-filter>
26 </activity>
27
28 <service
29 android:name=".MyFirebaseInstanceIdService">
30 <intent-filter>
31 <action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
32 </intent-filter>
33 </service>
34
35 <service
36 android:name=".MyFirebaseMessagingService">
37 <intent-filter>
38 <action android:name="com.google.firebase.MESSAGING_EVENT"/>
39 </intent-filter>
40 </service>
41
42 </application>
43
44 </manifest>