forked from forcedotcom/SalesforceMobileSDK-Android
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
106 lines (90 loc) · 4.58 KB
/
Copy pathAndroidManifest.xml
File metadata and controls
106 lines (90 loc) · 4.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:versionCode="92"
android:versionName="13.2.0.dev">
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
<application>
<!-- Metadata for supported app restrictions -->
<meta-data android:name="android.content.APP_RESTRICTIONS"
android:resource="@xml/app_restrictions" />
<!-- Service required for authentication -->
<service android:exported="true"
android:name="com.salesforce.androidsdk.auth.AuthenticatorService"
tools:ignore="ExportedService">
<intent-filter>
<action android:name="android.accounts.AccountAuthenticator" />
</intent-filter>
<meta-data android:name="android.accounts.AccountAuthenticator"
android:resource="@xml/authenticator" />
</service>
<service android:exported="true"
android:name="com.salesforce.androidsdk.auth.LegacyAuthenticatorService"
tools:ignore="ExportedService">
<intent-filter>
<action android:name="android.accounts.AccountAuthenticator" />
</intent-filter>
<meta-data android:name="android.accounts.AccountAuthenticator"
android:resource="@xml/legacy_authenticator" />
</service>
<!-- Login activity -->
<activity android:name="com.salesforce.androidsdk.ui.LoginActivity"
android:theme="@style/SalesforceSDK"
android:launchMode="singleTask"
android:windowSoftInputMode="adjustResize"
android:configChanges="orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:exported="true" />
<!-- Token Migration Activity -->
<activity android:name="com.salesforce.androidsdk.ui.TokenMigrationActivity"
android:excludeFromRecents="true"
android:theme="@style/AccountSwitcher"
android:exported="false" />
<!-- Screen Lock Activity-->
<activity android:name="com.salesforce.androidsdk.ui.ScreenLockActivity"
android:exported="false"
android:windowSoftInputMode="adjustResize|stateAlwaysVisible"
android:theme="@style/SalesforceSDK.ScreenLock" />
<!-- Manage space activity -->
<activity android:name="com.salesforce.androidsdk.ui.ManageSpaceActivity"
android:excludeFromRecents="true"
android:theme="@style/SalesforceSDK"
android:exported="false" />
<!-- Account switcher activity -->
<activity android:name="com.salesforce.androidsdk.ui.AccountSwitcherActivity"
android:excludeFromRecents="true"
android:theme="@style/AccountSwitcher"
android:exported="false" />
<!-- IDP auth code activity -->
<activity android:name="com.salesforce.androidsdk.auth.idp.IDPAuthCodeActivity"
android:excludeFromRecents="true"
android:theme="@style/SalesforceSDK"
android:exported="true" />
<!-- Receiver in SP app for IDP-SP login flows -->
<receiver android:name="com.salesforce.androidsdk.auth.idp.SPReceiver"
android:exported="true"
tools:ignore="ExportedReceiver">
<intent-filter>
<action android:name="com.salesforce.androidsdk.IDP_TO_SP_REQUEST" />
<action android:name="com.salesforce.androidsdk.IDP_TO_SP_RESPONSE" />
</intent-filter>
</receiver>
<!-- Receiver in IDP app for IDP-SP login flows -->
<receiver android:name="com.salesforce.androidsdk.auth.idp.IDPReceiver"
android:exported="true"
tools:ignore="ExportedReceiver">
<intent-filter>
<action android:name="com.salesforce.androidsdk.SP_TO_IDP_REQUEST" />
<action android:name="com.salesforce.androidsdk.SP_TO_IDP_RESPONSE" />
</intent-filter>
</receiver>
<service android:name="com.salesforce.androidsdk.push.SFDCFcmListenerService"
android:exported="false">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
</application>
</manifest>