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