Skip to content

Commit 304ac93

Browse files
Add files via upload
1 parent 3343611 commit 304ac93

17 files changed

+120
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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.test" >
4+
5+
<uses-sdk
6+
android:minSdkVersion="21"
7+
android:targetSdkVersion="26" />
8+
9+
<instrumentation
10+
android:name="android.support.test.runner.AndroidJUnitRunner"
11+
android:functionalTest="false"
12+
android:handleProfiling="false"
13+
android:label="Tests for com.example.ankit.recyclerviewwithsearchview"
14+
android:targetPackage="com.example.ankit.recyclerviewwithsearchview" />
15+
16+
<application>
17+
<uses-library android:name="android.test.runner" />
18+
</application>
19+
20+
</manifest>
Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
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>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)