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

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/mobile/android/services/manifests/FxAccountAndroidManifest_activities.xml.in	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,84 @@
     1.4 +        <activity
     1.5 +            android:theme="@style/FxAccountTheme.FxAccountStatusActivity"
     1.6 +            android:label="@string/fxaccount_status_activity_label"
     1.7 +            android:clearTaskOnLaunch="true"
     1.8 +            android:taskAffinity="@ANDROID_PACKAGE_NAME@.FXA"
     1.9 +            android:name="org.mozilla.gecko.fxa.activities.FxAccountStatusActivity"
    1.10 +            android:windowSoftInputMode="adjustResize">
    1.11 +            <!-- Adding a launcher will make this activity appear on the
    1.12 +                 Apps screen, which we only want when testing. -->
    1.13 +            <intent-filter>
    1.14 +                <action android:name="android.intent.action.MAIN" />
    1.15 +                <!-- <category android:name="android.intent.category.LAUNCHER" /> -->
    1.16 +            </intent-filter>
    1.17 +        </activity>
    1.18 +
    1.19 +        <activity
    1.20 +            android:theme="@style/FxAccountTheme"
    1.21 +            android:label="@string/sync_app_name"
    1.22 +            android:clearTaskOnLaunch="true"
    1.23 +            android:taskAffinity="@ANDROID_PACKAGE_NAME@.FXA"
    1.24 +            android:name="org.mozilla.gecko.fxa.activities.FxAccountGetStartedActivity"
    1.25 +            android:windowSoftInputMode="adjustResize">
    1.26 +            <!-- Adding a launcher will make this activity appear on the
    1.27 +                 Apps screen, which we only want when testing. -->
    1.28 +            <intent-filter>
    1.29 +                <action android:name="android.intent.action.MAIN" />
    1.30 +                <!-- <category android:name="android.intent.category.LAUNCHER" /> -->
    1.31 +            </intent-filter>
    1.32 +        </activity>
    1.33 +
    1.34 +        <activity
    1.35 +            android:theme="@style/FxAccountTheme"
    1.36 +            android:name="org.mozilla.gecko.fxa.activities.FxAccountCreateAccountActivity"
    1.37 +            android:windowSoftInputMode="adjustResize">
    1.38 +        </activity>
    1.39 +
    1.40 +        <activity
    1.41 +            android:theme="@style/FxAccountTheme"
    1.42 +            android:name="org.mozilla.gecko.fxa.activities.FxAccountConfirmAccountActivity"
    1.43 +            android:noHistory="true"
    1.44 +            android:windowSoftInputMode="adjustResize">
    1.45 +        </activity>
    1.46 +
    1.47 +        <activity
    1.48 +            android:theme="@style/FxAccountTheme"
    1.49 +            android:name="org.mozilla.gecko.fxa.activities.FxAccountSignInActivity"
    1.50 +            android:windowSoftInputMode="adjustResize">
    1.51 +        </activity>
    1.52 +
    1.53 +        <activity
    1.54 +            android:theme="@style/FxAccountTheme"
    1.55 +            android:name="org.mozilla.gecko.fxa.activities.FxAccountVerifiedAccountActivity"
    1.56 +            android:noHistory="true"
    1.57 +            android:windowSoftInputMode="adjustResize">
    1.58 +        </activity>
    1.59 +
    1.60 +        <activity
    1.61 +            android:theme="@style/FxAccountTheme"
    1.62 +            android:name="org.mozilla.gecko.fxa.activities.FxAccountUpdateCredentialsActivity"
    1.63 +            android:windowSoftInputMode="adjustResize">
    1.64 +        </activity>
    1.65 +
    1.66 +        <activity
    1.67 +            android:theme="@style/FxAccountTheme"
    1.68 +            android:name="org.mozilla.gecko.fxa.activities.FxAccountCreateAccountNotAllowedActivity"
    1.69 +            android:noHistory="true"
    1.70 +            android:windowSoftInputMode="adjustResize">
    1.71 +        </activity>
    1.72 +
    1.73 +        <receiver
    1.74 +            android:name="org.mozilla.gecko.fxa.receivers.FxAccountDeletedReceiver"
    1.75 +            android:permission="@MOZ_ANDROID_SHARED_FXACCOUNT_TYPE@.permission.PER_ACCOUNT_TYPE">
    1.76 +            <intent-filter>
    1.77 +                <action android:name="@MOZ_ANDROID_SHARED_FXACCOUNT_TYPE@.accounts.ACCOUNT_DELETED_ACTION"/>
    1.78 +            </intent-filter>
    1.79 +        </receiver>
    1.80 +
    1.81 +        <receiver
    1.82 +            android:name="org.mozilla.gecko.fxa.receivers.FxAccountUpgradeReceiver">
    1.83 +            <intent-filter>
    1.84 +                <action android:name="android.intent.action.PACKAGE_REPLACED" />
    1.85 +                <data android:scheme="package"/>
    1.86 +            </intent-filter>
    1.87 +        </receiver>

mercurial