(config: Config)
| 9 | import { convertToUnixPath } from '../util/fs'; |
| 10 | |
| 11 | export async function checkAndroidPackage(config: Config): Promise<string | null> { |
| 12 | return checkCapacitorPlatform(config, 'android'); |
| 13 | } |
| 14 | |
| 15 | export async function getAndroidPlugins(allPlugins: Plugin[]): Promise<Plugin[]> { |
| 16 | const resolved = await Promise.all(allPlugins.map(async (plugin) => await resolvePlugin(plugin))); |
no test coverage detected