diff options
| author | wangjing <wangjing@codeaurora.org> | 2015-04-07 16:22:06 +0800 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2015-11-04 21:20:06 -0800 |
| commit | 0bda8528e3df427f86d431dba0919fd6b477b56b (patch) | |
| tree | 3b69f2f3f0b2a13cd8278e923d34583000df3d9e /AndroidManifest.xml | |
| parent | 11f225299457f1c1a5ce2f5b8bdbcbf71a304c7d (diff) | |
| download | android_packages_apps_Email-0bda8528e3df427f86d431dba0919fd6b477b56b.tar.gz android_packages_apps_Email-0bda8528e3df427f86d431dba0919fd6b477b56b.tar.bz2 android_packages_apps_Email-0bda8528e3df427f86d431dba0919fd6b477b56b.zip | |
Email: Fix the ActivityNotFoundException when click "Update now"
There is no activity response the intent of action VIEW and
data auth://com.android.email.ACCOUNT_SECURITY.
Add the intent filter for activity AccountSecurity, then this activity
can handle this intent.
CRs-fixed: 816922
Change-Id: I0b8982c63bd31d3fcca506fde9a1ad0d72e38cbb
Diffstat (limited to 'AndroidManifest.xml')
| -rwxr-xr-x | AndroidManifest.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 414dd7a1a..3a7215c8d 100755 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -345,6 +345,12 @@ android:name=".activity.setup.AccountSecurity" android:label="@string/account_security_title" > + <intent-filter> + <action android:name="android.intent.action.VIEW" /> + <category android:name="android.intent.category.DEFAULT" /> + <data android:host="com.android.email.ACCOUNT_SECURITY" /> + <data android:scheme="auth"/> + </intent-filter> </activity> <activity |
