Skip to content

Commit cd95b79

Browse files
authored
support jks in signing key file input #4312 (#4951)
fixes #4312 ## PR Type - Bugfix ## Describe the current behavior? .jks files are not supported on the custom signing key file input ## Describe the new behavior? added signing support with .jks files ## PR Checklist - [ ] Test: run `npm run test` and ensure that all tests pass - [ ] Target main branch (or an appropriate release branch if appropriate for a bug fix) - [ ] Ensure that your contribution follows [standard accessibility guidelines](https://docs.microsoft.com/en-us/microsoft-edge/accessibility/design). Use tools like https://webhint.io/ to validate your changes. ## Additional Information
1 parent d0b2132 commit cd95b79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/pwabuilder/src/script/components/android-form.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,7 @@ export class AndroidForm extends AppPackageFormBase {
852852
id="signing-key-file-input"
853853
@change="${(e: Event) =>
854854
this.androidSigningKeyUploaded(e.target)}"
855-
accept=".keystore"
855+
accept=".keystore, .jks"
856856
required
857857
/>
858858
</div>

0 commit comments

Comments
 (0)