feat: Android updates for Windows and androidVersionCode output (#478)

* Create android keystore on windows, output android version code

* Add androidVersionCode output test

* Move android keystore decode logic to TS
This commit is contained in:
AndrewKahr
2022-11-23 02:06:58 -07:00
committed by GitHub
parent f03bee03f6
commit 5bd589e19f
10 changed files with 93 additions and 13 deletions

View File

@@ -7,3 +7,11 @@ describe('Output', () => {
});
});
});
describe('Output', () => {
describe('setAndroidVersionCode', () => {
it('does not throw', async () => {
await expect(Output.setAndroidVersionCode('1000')).resolves.not.toThrow();
});
});
});