You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
780 B

import { SpawnResult } from '@expo/spawn-async';
export declare type Keystore = {
keystore: string;
keystorePassword: string;
keyPassword: string;
keyAlias: string;
};
export declare type KeystoreInfo = {
keystorePath: string;
keystorePassword: string;
keyPassword: string;
keyAlias: string;
};
export declare function exportCertBase64({ keystorePath, keystorePassword, keyAlias, }: Pick<KeystoreInfo, 'keystorePath' | 'keystorePassword' | 'keyAlias'>, certFile: string): Promise<SpawnResult>;
export declare function logKeystoreHashes(keystoreInfo: KeystoreInfo, linePrefix?: string): Promise<void>;
export declare function generateUploadKeystore(uploadKeystorePath: string, androidPackage: string, experienceName: string): Promise<KeystoreInfo>;