mobile/android/services/manifests/FxAccountAndroidManifest_activities.xml.in

branch
TOR_BUG_9701
changeset 15
b8a032363ba2
equal deleted inserted replaced
-1:000000000000 0:76e395b7d495
1 <activity
2 android:theme="@style/FxAccountTheme.FxAccountStatusActivity"
3 android:label="@string/fxaccount_status_activity_label"
4 android:clearTaskOnLaunch="true"
5 android:taskAffinity="@ANDROID_PACKAGE_NAME@.FXA"
6 android:name="org.mozilla.gecko.fxa.activities.FxAccountStatusActivity"
7 android:windowSoftInputMode="adjustResize">
8 <!-- Adding a launcher will make this activity appear on the
9 Apps screen, which we only want when testing. -->
10 <intent-filter>
11 <action android:name="android.intent.action.MAIN" />
12 <!-- <category android:name="android.intent.category.LAUNCHER" /> -->
13 </intent-filter>
14 </activity>
15
16 <activity
17 android:theme="@style/FxAccountTheme"
18 android:label="@string/sync_app_name"
19 android:clearTaskOnLaunch="true"
20 android:taskAffinity="@ANDROID_PACKAGE_NAME@.FXA"
21 android:name="org.mozilla.gecko.fxa.activities.FxAccountGetStartedActivity"
22 android:windowSoftInputMode="adjustResize">
23 <!-- Adding a launcher will make this activity appear on the
24 Apps screen, which we only want when testing. -->
25 <intent-filter>
26 <action android:name="android.intent.action.MAIN" />
27 <!-- <category android:name="android.intent.category.LAUNCHER" /> -->
28 </intent-filter>
29 </activity>
30
31 <activity
32 android:theme="@style/FxAccountTheme"
33 android:name="org.mozilla.gecko.fxa.activities.FxAccountCreateAccountActivity"
34 android:windowSoftInputMode="adjustResize">
35 </activity>
36
37 <activity
38 android:theme="@style/FxAccountTheme"
39 android:name="org.mozilla.gecko.fxa.activities.FxAccountConfirmAccountActivity"
40 android:noHistory="true"
41 android:windowSoftInputMode="adjustResize">
42 </activity>
43
44 <activity
45 android:theme="@style/FxAccountTheme"
46 android:name="org.mozilla.gecko.fxa.activities.FxAccountSignInActivity"
47 android:windowSoftInputMode="adjustResize">
48 </activity>
49
50 <activity
51 android:theme="@style/FxAccountTheme"
52 android:name="org.mozilla.gecko.fxa.activities.FxAccountVerifiedAccountActivity"
53 android:noHistory="true"
54 android:windowSoftInputMode="adjustResize">
55 </activity>
56
57 <activity
58 android:theme="@style/FxAccountTheme"
59 android:name="org.mozilla.gecko.fxa.activities.FxAccountUpdateCredentialsActivity"
60 android:windowSoftInputMode="adjustResize">
61 </activity>
62
63 <activity
64 android:theme="@style/FxAccountTheme"
65 android:name="org.mozilla.gecko.fxa.activities.FxAccountCreateAccountNotAllowedActivity"
66 android:noHistory="true"
67 android:windowSoftInputMode="adjustResize">
68 </activity>
69
70 <receiver
71 android:name="org.mozilla.gecko.fxa.receivers.FxAccountDeletedReceiver"
72 android:permission="@MOZ_ANDROID_SHARED_FXACCOUNT_TYPE@.permission.PER_ACCOUNT_TYPE">
73 <intent-filter>
74 <action android:name="@MOZ_ANDROID_SHARED_FXACCOUNT_TYPE@.accounts.ACCOUNT_DELETED_ACTION"/>
75 </intent-filter>
76 </receiver>
77
78 <receiver
79 android:name="org.mozilla.gecko.fxa.receivers.FxAccountUpgradeReceiver">
80 <intent-filter>
81 <action android:name="android.intent.action.PACKAGE_REPLACED" />
82 <data android:scheme="package"/>
83 </intent-filter>
84 </receiver>

mercurial