1+ <?xml version =" 1.0" encoding =" utf-8" ?>
2+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3+ package =" com.example.ankit.recyclerviewwithsearchview"
4+ android : versionCode =" 1"
5+ android : versionName =" 1.0" >
6+
7+ <uses-sdk
8+ android : minSdkVersion =" 21"
9+ android : targetSdkVersion =" 26" />
10+
11+ <meta-data
12+ android : name =" android.support.VERSION"
13+ android : value =" 26.0.0-alpha1" /> <!-- Required permission for App measurement to run. -->
14+ <uses-permission android : name =" android.permission.INTERNET" />
15+ <uses-permission android : name =" android.permission.ACCESS_NETWORK_STATE" />
16+ <uses-permission android : name =" android.permission.WAKE_LOCK" />
17+ <uses-permission android : name =" com.google.android.c2dm.permission.RECEIVE" />
18+
19+ <permission
20+ android : name =" com.example.ankit.recyclerviewwithsearchview.permission.C2D_MESSAGE"
21+ android : protectionLevel =" signature" />
22+
23+ <uses-permission android : name =" com.example.ankit.recyclerviewwithsearchview.permission.C2D_MESSAGE" />
24+
25+ <application
26+ android : allowBackup =" true"
27+ android : icon =" @mipmap/ic_launcher"
28+ android : label =" @string/app_name"
29+ android : roundIcon =" @mipmap/ic_launcher_round"
30+ android : supportsRtl =" true"
31+ android : theme =" @style/AppTheme" >
32+ <activity android : name =" com.example.ankit.recyclerviewwithsearchview.MainActivity" >
33+ <intent-filter >
34+ <action android : name =" android.intent.action.MAIN" />
35+
36+ <category android : name =" android.intent.category.LAUNCHER" />
37+ </intent-filter >
38+ </activity >
39+
40+ <receiver
41+ android : name =" com.google.android.gms.measurement.AppMeasurementReceiver"
42+ android : enabled =" true"
43+ android : exported =" false" >
44+ </receiver >
45+ <receiver
46+ android : name =" com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver"
47+ android : enabled =" true"
48+ android : permission =" android.permission.INSTALL_PACKAGES" >
49+ <intent-filter >
50+ <action android : name =" com.android.vending.INSTALL_REFERRER" />
51+ </intent-filter >
52+ </receiver >
53+
54+ <service
55+ android : name =" com.google.android.gms.measurement.AppMeasurementService"
56+ android : enabled =" true"
57+ android : exported =" false" />
58+
59+ <receiver
60+ android : name =" com.google.firebase.iid.FirebaseInstanceIdReceiver"
61+ android : exported =" true"
62+ android : permission =" com.google.android.c2dm.permission.SEND" >
63+ <intent-filter >
64+ <action android : name =" com.google.android.c2dm.intent.RECEIVE" />
65+ <action android : name =" com.google.android.c2dm.intent.REGISTRATION" />
66+
67+ <category android : name =" com.example.ankit.recyclerviewwithsearchview" />
68+ </intent-filter >
69+ </receiver >
70+ <!--
71+ Internal (not exported) receiver used by the app to start its own exported services
72+ without risk of being spoofed.
73+ -->
74+ <receiver
75+ android : name =" com.google.firebase.iid.FirebaseInstanceIdInternalReceiver"
76+ android : exported =" false" />
77+ <!--
78+ FirebaseInstanceIdService performs security checks at runtime,
79+ no need for explicit permissions despite exported="true"
80+ -->
81+ <service
82+ android : name =" com.google.firebase.iid.FirebaseInstanceIdService"
83+ android : exported =" true" >
84+ <intent-filter android : priority =" -500" >
85+ <action android : name =" com.google.firebase.INSTANCE_ID_EVENT" />
86+ </intent-filter >
87+ </service >
88+
89+ <provider
90+ android : name =" com.google.firebase.provider.FirebaseInitProvider"
91+ android : authorities =" com.example.ankit.recyclerviewwithsearchview.firebaseinitprovider"
92+ android : exported =" false"
93+ android : initOrder =" 100" />
94+
95+ <meta-data
96+ android : name =" com.google.android.gms.version"
97+ android : value =" @integer/google_play_services_version" />
98+ </application >
99+
100+ </manifest >
0 commit comments