(config: Config, platformName: string)
| 133 | } |
| 134 | |
| 135 | async function editPlatforms(config: Config, platformName: string) { |
| 136 | if (platformName === config.ios.name) { |
| 137 | await editProjectSettingsIOS(config); |
| 138 | } else if (platformName === config.android.name) { |
| 139 | await editProjectSettingsAndroid(config); |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | function webWarning() { |
| 144 | logger.error( |
no test coverage detected