jenkins-bot has submitted this change and it was merged. Change subject: Support handoff and credential sharing with the iOS app ......................................................................
Support handoff and credential sharing with the iOS app This change adds 2 additional dictionaries to the association file: activitycontinuation: --------------------- This enables Handoff between the Safari browser on any Mac/iOS device and the Wikipedia iOS app. See here for more information: https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/Handoff/HandoffFundamentals/HandoffFundamentals.html webcredentials: --------------- This enables sharing of credentials for Safari and the iOS app in the iOS keychain. This means two things: 1. If a user logs in to the app, then those credentials will be available to login in Safari. 2. If a user logs into wikipedia.org, then those credentials will be available to login in the iOS app. See here for more information: https://developer.apple.com/library/ios/documentation/Security/Reference/SharedWebCredentialsRef/ Bug: T128795 Change-Id: Ia2e83cc3e268cd32f467a8e3d5c264efdad77919 --- M docroot/wikipedia.org/apple-app-site-association 1 file changed, 18 insertions(+), 0 deletions(-) Approvals: Fjalapeno: Looks good to me, but someone else must approve Mattflaschen: Looks good to me, approved Brion VIBBER: Looks good to me, but someone else must approve Dereckson: Looks good to me, but someone else must approve jenkins-bot: Verified diff --git a/docroot/wikipedia.org/apple-app-site-association b/docroot/wikipedia.org/apple-app-site-association index 598c9a5..351fb3e 100644 --- a/docroot/wikipedia.org/apple-app-site-association +++ b/docroot/wikipedia.org/apple-app-site-association @@ -1,4 +1,22 @@ { + "activitycontinuation": { + "apps": [ + "AKK7J2GV64.org.wikimedia.wikipedia.developer", + "AKK7J2GV64.org.wikimedia.wikipedia.tfalpha", + "AKK7J2GV64.org.wikimedia.wikipedia.tfbeta", + "AKK7J2GV64.org.wikimedia.wikipedia.adhoc", + "AKK7J2GV64.org.wikimedia.wikipedia" + ] + }, + "webcredentials": { + "apps": [ + "AKK7J2GV64.org.wikimedia.wikipedia.developer", + "AKK7J2GV64.org.wikimedia.wikipedia.tfalpha", + "AKK7J2GV64.org.wikimedia.wikipedia.tfbeta", + "AKK7J2GV64.org.wikimedia.wikipedia.adhoc", + "AKK7J2GV64.org.wikimedia.wikipedia" + ] + }, "applinks": { "apps": [], "details": [ -- To view, visit https://gerrit.wikimedia.org/r/279394 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: Ia2e83cc3e268cd32f467a8e3d5c264efdad77919 Gerrit-PatchSet: 8 Gerrit-Project: operations/mediawiki-config Gerrit-Branch: master Gerrit-Owner: Fjalapeno <[email protected]> Gerrit-Reviewer: Alex Monk <[email protected]> Gerrit-Reviewer: Bgerstle <[email protected]> Gerrit-Reviewer: Brion VIBBER <[email protected]> Gerrit-Reviewer: BryanDavis <[email protected]> Gerrit-Reviewer: CSteipp <[email protected]> Gerrit-Reviewer: Dereckson <[email protected]> Gerrit-Reviewer: Fjalapeno <[email protected]> Gerrit-Reviewer: Jdlrobson <[email protected]> Gerrit-Reviewer: Mattflaschen <[email protected]> Gerrit-Reviewer: Mhurd <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
