2012-01-14 09:20:31 -08:00
|
|
|
<activity
|
2012-08-30 12:12:56 -07:00
|
|
|
android:theme="@style/SyncTheme"
|
2012-07-26 08:47:25 -07:00
|
|
|
android:icon="@drawable/icon"
|
2012-01-14 09:20:31 -08:00
|
|
|
android:label="@string/sync_app_name"
|
2012-05-18 11:28:24 -07:00
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
2012-09-24 12:33:42 -07:00
|
|
|
android:windowSoftInputMode="adjustResize|stateAlwaysHidden"
|
2012-02-04 18:24:06 -08:00
|
|
|
android:taskAffinity="org.mozilla.gecko.sync.setup"
|
2012-01-14 09:20:31 -08:00
|
|
|
android:name="org.mozilla.gecko.sync.setup.activities.SetupSyncActivity" >
|
|
|
|
<!-- android:configChanges: SetupSyncActivity will handle orientation changes; no longer restarts activity (default) -->
|
|
|
|
<intent-filter>
|
2012-02-03 13:09:28 -08:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2012-08-30 12:12:56 -07:00
|
|
|
<!-- Adding a launcher will make Firefox Sync appear
|
|
|
|
on the Apps screen, which we only want when testing. -->
|
|
|
|
<!-- <category android:name="android.intent.category.LAUNCHER" /> -->
|
2012-01-14 09:20:31 -08:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2012-06-10 16:44:50 -07:00
|
|
|
|
2012-08-30 12:18:15 -07:00
|
|
|
<!-- On tablets, SyncTheme is in a dialog, which is not what
|
|
|
|
we want for install instructions. -->
|
2012-08-10 08:03:36 -07:00
|
|
|
<activity
|
2012-08-30 12:18:15 -07:00
|
|
|
android:theme="@style/Gecko"
|
2012-08-10 08:03:36 -07:00
|
|
|
android:name="org.mozilla.gecko.sync.setup.activities.WebViewActivity" />
|
|
|
|
|
2011-12-21 08:44:08 -08:00
|
|
|
<activity
|
2012-08-30 12:12:56 -07:00
|
|
|
android:theme="@style/SyncTheme"
|
2011-12-21 08:44:08 -08:00
|
|
|
android:clearTaskOnLaunch="true"
|
|
|
|
android:name="org.mozilla.gecko.sync.setup.activities.AccountActivity"
|
2012-08-30 12:12:56 -07:00
|
|
|
android:windowSoftInputMode="adjustResize|stateHidden"/>
|
2012-06-10 16:44:50 -07:00
|
|
|
|
|
|
|
<activity
|
2012-08-30 12:12:56 -07:00
|
|
|
android:theme="@style/SyncTheme"
|
2012-06-10 16:44:50 -07:00
|
|
|
android:clearTaskOnLaunch="true"
|
|
|
|
android:name="org.mozilla.gecko.sync.setup.activities.RedirectToSetupActivity"
|
2012-08-30 12:12:56 -07:00
|
|
|
android:windowSoftInputMode="adjustResize|stateHidden"/>
|
2012-06-10 16:44:50 -07:00
|
|
|
|
2012-10-09 15:09:08 -07:00
|
|
|
<!-- Secondary Sync activities. These depend on other activities for context
|
|
|
|
(display a result, or a next step). Since these don't make sense as stand-alone
|
|
|
|
activities, set excludeFromRecents="true" -->
|
2011-12-21 08:44:08 -08:00
|
|
|
<activity
|
2012-08-30 12:12:56 -07:00
|
|
|
android:theme="@style/SyncTheme"
|
2012-05-08 15:14:48 -07:00
|
|
|
android:noHistory="true"
|
2012-10-09 15:09:08 -07:00
|
|
|
android:excludeFromRecents="true"
|
2011-12-21 08:44:08 -08:00
|
|
|
android:name="org.mozilla.gecko.sync.setup.activities.SetupFailureActivity" />
|
2012-06-10 16:44:50 -07:00
|
|
|
|
2011-12-21 08:44:08 -08:00
|
|
|
<activity
|
2012-08-30 12:12:56 -07:00
|
|
|
android:theme="@style/SyncTheme"
|
2012-05-08 15:14:48 -07:00
|
|
|
android:noHistory="true"
|
2012-10-09 15:09:08 -07:00
|
|
|
android:excludeFromRecents="true"
|
2012-02-22 14:54:45 -08:00
|
|
|
android:name="org.mozilla.gecko.sync.setup.activities.SetupSuccessActivity" />
|
2012-06-10 16:44:50 -07:00
|
|
|
|
2012-10-09 15:09:08 -07:00
|
|
|
<activity
|
|
|
|
android:theme="@style/SyncTheme"
|
|
|
|
android:excludeFromRecents="true"
|
|
|
|
android:taskAffinity="org.mozilla.gecko.sync.setup"
|
|
|
|
android:name="org.mozilla.gecko.sync.config.activities.SelectEnginesActivity">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2012-05-04 17:25:34 -07:00
|
|
|
<receiver
|
|
|
|
android:name="org.mozilla.gecko.sync.receivers.UpgradeReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2012-06-10 16:44:50 -07:00
|
|
|
|
2012-09-28 09:40:51 -07:00
|
|
|
<receiver
|
|
|
|
android:name="org.mozilla.gecko.sync.receivers.SyncAccountDeletedReceiver"
|
|
|
|
android:permission="@MOZ_ANDROID_SHARED_ACCOUNT_TYPE@.permission.PER_ACCOUNT_TYPE">
|
|
|
|
<intent-filter>
|
|
|
|
<!-- This needs to be kept the same as
|
|
|
|
GlobalConstants.SYNC_ACCOUNT_DELETED_ACTION. -->
|
|
|
|
<action android:name="@MOZ_ANDROID_SHARED_ACCOUNT_TYPE@.accounts.SYNC_ACCOUNT_DELETED_ACTION"/>
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2012-06-10 16:44:50 -07:00
|
|
|
<activity
|
2012-08-30 12:12:56 -07:00
|
|
|
android:theme="@style/SyncTheme"
|
2012-10-09 15:09:08 -07:00
|
|
|
android:excludeFromRecents="true"
|
2012-07-26 08:47:25 -07:00
|
|
|
android:icon="@drawable/icon"
|
2012-06-10 16:44:50 -07:00
|
|
|
android:label="@string/sync_app_name"
|
2013-01-03 19:00:13 -08:00
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
2012-06-10 16:44:50 -07:00
|
|
|
android:windowSoftInputMode="adjustResize|stateHidden"
|
|
|
|
android:taskAffinity="org.mozilla.gecko.sync.setup"
|
|
|
|
android:name="org.mozilla.gecko.sync.setup.activities.SendTabActivity" >
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="text/*" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|