| 21480 |
rajender |
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
3 |
package="com.saholic.profittill">
|
|
|
4 |
<uses-permission android:name="android.permission.RECEIVE_SMS"/>
|
|
|
5 |
<uses-permission android:name="android.permission.READ_SMS"/>
|
|
|
6 |
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
|
|
7 |
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
|
8 |
<uses-permission android:name="android.permission.GET_TASKS" />
|
|
|
9 |
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
10 |
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
|
|
11 |
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
|
|
|
12 |
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
13 |
<uses-permission android:name="android.permission.NETWORK" />
|
|
|
14 |
<uses-permission android:name="android.permission.BLUETOOTH" />
|
|
|
15 |
<uses-permission android:name="android.permission.CALL_PHONE" />
|
|
|
16 |
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
17 |
|
|
|
18 |
<application
|
|
|
19 |
android:name=".main.GoogleAnalyticsTracker"
|
|
|
20 |
android:allowBackup="true"
|
|
|
21 |
android:icon="@drawable/pmsplashnew"
|
|
|
22 |
android:label="ProfitMandi"
|
|
|
23 |
android:theme="@style/AppTheme">
|
|
|
24 |
<meta-data
|
|
|
25 |
android:name="com.google.android.gms.version"
|
|
|
26 |
android:value="@integer/google_play_services_version" />
|
|
|
27 |
<meta-data
|
|
|
28 |
android:name="com.google.android.gms.analytics.globalConfigResource"
|
|
|
29 |
android:resource="@xml/global_tracker" />
|
|
|
30 |
|
|
|
31 |
<activity
|
|
|
32 |
android:name=".SplashScreen"
|
|
|
33 |
android:label="ProfitMandi">
|
|
|
34 |
<intent-filter>
|
|
|
35 |
<action android:name="android.intent.action.MAIN" />
|
|
|
36 |
|
|
|
37 |
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
38 |
</intent-filter>
|
|
|
39 |
<intent-filter>
|
|
|
40 |
<action android:name="android.intent.action.VIEW" />
|
|
|
41 |
|
|
|
42 |
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
43 |
<category android:name="android.intent.category.DEFAULT" />
|
|
|
44 |
|
|
|
45 |
<data android:scheme="profitmandiapp" />
|
|
|
46 |
</intent-filter>
|
|
|
47 |
</activity>
|
|
|
48 |
<activity
|
|
|
49 |
android:name=".main.LoginActivity"
|
|
|
50 |
android:label="@string/title_activity_login"
|
|
|
51 |
android:windowSoftInputMode="stateAlwaysHidden" />
|
|
|
52 |
<activity
|
|
|
53 |
android:name=".main.DealsHome"
|
|
|
54 |
android:label="@string/title_activity_deals_home" />
|
|
|
55 |
<activity
|
|
|
56 |
android:name=".main.MainActivity"
|
|
|
57 |
android:configChanges="orientation|screenSize"
|
|
|
58 |
android:uiOptions="splitActionBarWhenNarrow" />
|
|
|
59 |
|
|
|
60 |
<intent-filter>
|
|
|
61 |
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
|
|
|
62 |
|
|
|
63 |
<category android:name="com.saholic.profittill.main" />
|
|
|
64 |
</intent-filter>
|
|
|
65 |
|
|
|
66 |
<activity
|
|
|
67 |
android:name=".Utils.SplashInternetNotWorking"
|
|
|
68 |
android:label="@string/title_activity_splash_internet_not_working" />
|
|
|
69 |
<!-- AppKey -->
|
|
|
70 |
<meta-data
|
|
|
71 |
android:name="TESTIN_APPKEY"
|
|
|
72 |
android:value="a02e1684da74928c14e366017f2557b7" />
|
|
|
73 |
<!-- Distribution channel -->
|
|
|
74 |
<meta-data
|
|
|
75 |
android:name="TESTIN_CHANNEL"
|
|
|
76 |
android:value="GooglePlay" />
|
|
|
77 |
|
|
|
78 |
<receiver
|
|
|
79 |
android:name="com.google.android.gms.analytics.AnalyticsReceiver"
|
|
|
80 |
android:enabled="true">
|
|
|
81 |
<intent-filter>
|
|
|
82 |
<action android:name="com.google.android.gms.analytics.ANALYTICS_DISPATCH" />
|
|
|
83 |
</intent-filter>
|
|
|
84 |
</receiver>
|
|
|
85 |
|
|
|
86 |
|
|
|
87 |
|
|
|
88 |
<service
|
|
|
89 |
android:name="com.google.android.gms.analytics.AnalyticsService"
|
|
|
90 |
android:enabled="true"
|
|
|
91 |
android:exported="false" />
|
|
|
92 |
|
|
|
93 |
<!--
|
|
|
94 |
Optionally, register CampaignTrackingReceiver and CampaignTrackingService to enable
|
|
|
95 |
installation campaign reporting
|
|
|
96 |
-->
|
|
|
97 |
<receiver
|
|
|
98 |
android:name="com.google.android.gms.analytics.CampaignTrackingReceiver"
|
|
|
99 |
android:exported="true">
|
|
|
100 |
<intent-filter>
|
|
|
101 |
<action android:name="com.android.vending.INSTALL_REFERRER" />
|
|
|
102 |
</intent-filter>
|
|
|
103 |
</receiver>
|
|
|
104 |
|
|
|
105 |
<service android:name="com.google.android.gms.analytics.CampaignTrackingService" />
|
|
|
106 |
|
|
|
107 |
<receiver
|
|
|
108 |
android:name=".main.ReferrerReceiver"
|
|
|
109 |
android:enabled="true"
|
|
|
110 |
android:exported="true">
|
|
|
111 |
<intent-filter>
|
|
|
112 |
<action android:name="com.android.vending.INSTALL_REFERRER" />
|
|
|
113 |
</intent-filter>
|
|
|
114 |
</receiver>
|
|
|
115 |
<receiver
|
|
|
116 |
android:name=".BroadcastReceivers.UpdateReceiver"
|
|
|
117 |
android:enabled="true"
|
|
|
118 |
android:exported="true">
|
|
|
119 |
<intent-filter>
|
|
|
120 |
<action android:name="android.intent.action.PACKAGE_REPLACED" />
|
|
|
121 |
|
|
|
122 |
<data
|
|
|
123 |
android:path="com.saholic.profittill"
|
|
|
124 |
android:scheme="package" />
|
|
|
125 |
</intent-filter>
|
|
|
126 |
</receiver>
|
|
|
127 |
|
|
|
128 |
<meta-data
|
|
|
129 |
android:name="io.fabric.ApiKey"
|
|
|
130 |
android:value="d6335724208862d050f59f5de4c4b29b42d32065" />
|
|
|
131 |
|
|
|
132 |
<service
|
|
|
133 |
android:name=".Services.PollingService"
|
|
|
134 |
android:exported="false" />
|
|
|
135 |
|
|
|
136 |
<receiver
|
|
|
137 |
android:name=".BroadcastReceivers.PollRestartReceiver"
|
|
|
138 |
android:enabled="true"
|
|
|
139 |
android:exported="true">
|
|
|
140 |
<intent-filter>
|
|
|
141 |
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
142 |
</intent-filter>
|
|
|
143 |
</receiver>
|
|
|
144 |
|
|
|
145 |
<service android:name=".MyFirebaseMessagingService">
|
|
|
146 |
<intent-filter>
|
|
|
147 |
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
|
|
148 |
</intent-filter>
|
|
|
149 |
</service>
|
|
|
150 |
<service android:name=".MyFirebaseInstanceIDService">
|
|
|
151 |
<intent-filter>
|
|
|
152 |
<action android:name="com.google.firebase.INSTANCE_ID_EVENT" />
|
|
|
153 |
</intent-filter>
|
|
|
154 |
</service>
|
|
|
155 |
|
|
|
156 |
</application>
|
|
|
157 |
|
|
|
158 |
</manifest>
|