Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion docs/main/guides/autofill-credentials.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -141,15 +141,19 @@ Apple provides a [tool](https://search.developer.apple.com/appsearch-validation-

Branch provide a [tool](https://branch.io/resources/aasa-validator) that validates the link, content-type and JSON structure. It will show a false positive on an invalid JSON schema however.
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Grammar: "Branch provide" should be "Branch provides".

Suggested change
Branch provide a [tool](https://branch.io/resources/aasa-validator) that validates the link, content-type and JSON structure. It will show a false positive on an invalid JSON schema however.
Branch provides a [tool](https://branch.io/resources/aasa-validator) that validates the link, content-type and JSON structure. It will show a false positive on an invalid JSON schema however.

Copilot uses AI. Check for mistakes.

Capgo provide a [aasa-tester](https://aasa-tester.capgo.app/) made for Capacitor that validates the link, content-type and JSON structure. It will help you to debug any Site associaltion issues.
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Typo: "associaltion" is misspelled in this sentence; it should be "association".

Suggested change
Capgo provide a [aasa-tester](https://aasa-tester.capgo.app/) made for Capacitor that validates the link, content-type and JSON structure. It will help you to debug any Site associaltion issues.
Capgo provide a [aasa-tester](https://aasa-tester.capgo.app/) made for Capacitor that validates the link, content-type and JSON structure. It will help you to debug any Site association issues.

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Grammar/wording issues in this line reduce clarity: it should be "Capgo provides an AASA tester" (not "Capgo provide a"), and "site association" shouldn’t be capitalized mid-sentence.

Suggested change
Capgo provide a [aasa-tester](https://aasa-tester.capgo.app/) made for Capacitor that validates the link, content-type and JSON structure. It will help you to debug any Site associaltion issues.
Capgo provides an [AASA tester](https://aasa-tester.capgo.app/) made for Capacitor that validates the link, content-type and JSON structure. It will help you to debug any site association issues.

Copilot uses AI. Check for mistakes.

### Save Credentials

To control the saving of username and password credentials with the native iOS Password Manager you will need to use the [capacitor-ios-autofill-save-password](https://github.com/cuongpl/capacitor-ios-autofill-save-password) plugin:
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The text still states users need to use the capacitor-ios-autofill-save-password plugin (and links to that repo), but the install/import instructions below are for @capgo/capacitor-autofill-save-password. This is internally inconsistent and will mislead readers—update the plugin name/link in this sentence (and consider explicitly noting that the old plugin is no longer compatible on recent iOS versions, if that’s the intent).

Suggested change
To control the saving of username and password credentials with the native iOS Password Manager you will need to use the [capacitor-ios-autofill-save-password](https://github.com/cuongpl/capacitor-ios-autofill-save-password) plugin:
To control the saving of username and password credentials with the native iOS Password Manager you will need to use the [@capgo/capacitor-autofill-save-password](https://github.com/Cap-go/capacitor-autofill-save-password) plugin (which replaces the older `capacitor-ios-autofill-save-password` plugin that is no longer compatible with recent iOS versions):

Copilot uses AI. Check for mistakes.
```bash
npm install capacitor-ios-autofill-save-password
npm install @capgo/capacitor-autofill-save-password
```

Your code will need to save credentials after successful login if it targets iOS (other platforms do not require this):
```typescript
import { SavePassword } from '@capgo/capacitor-autofill-save-password';

if (Capacitor.getPlatform() === 'ios') {
await SavePassword.promptDialog({
username: '[the username that was entered]',
Expand Down Expand Up @@ -181,6 +185,9 @@ Follow the [Android Deep Links Guide](deep-links#android-configuration) to creat
}
```

Or with `@capgo/capacitor-autofill-save-password` to support Read and write passwords in keychain.
Follow this [link](https://capgo.app/docs/plugins/autofill-save-password/) to setup Android.
Comment on lines +188 to +189
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This Android section says the plugin supports reading/writing passwords in the "keychain", but "Keychain" is iOS terminology (Android uses Keystore). Also there’s a double space after "Or" and "setup" should be "set up" as a verb. Please reword this to use platform-accurate terminology and fix the spacing/grammar.

Suggested change
Or with `@capgo/capacitor-autofill-save-password` to support Read and write passwords in keychain.
Follow this [link](https://capgo.app/docs/plugins/autofill-save-password/) to setup Android.
Or use `@capgo/capacitor-autofill-save-password` to support reading and writing passwords using the device's secure credential storage (such as the Android Keystore).
Follow this [link](https://capgo.app/docs/plugins/autofill-save-password/) to set up Android.

Copilot uses AI. Check for mistakes.

## Configuration for Web
Follow the [Deep Links Guide](deep-links#website-configuration) if you are targeting the web.

Expand Down
Loading