eas-cli
Version:
EAS command line tool
9 lines (8 loc) • 403 B
TypeScript
import { Platform } from '@expo/eas-build-job';
import { BuildProfile } from '@expo/eas-json';
import { Client } from '../../vcs/vcs';
export interface GradleBuildContext {
moduleName?: string;
flavor?: string;
}
export declare function resolveGradleBuildContextAsync(projectDir: string, buildProfile: BuildProfile<Platform.ANDROID>, vcsClient: Client): Promise<GradleBuildContext | undefined>;