We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c00b4a2 commit 67249f3Copy full SHA for 67249f3
lib/controllers/migrate-controller.ts
@@ -116,7 +116,11 @@ export class MigrateController extends UpdateControllerBase implements IMigrateC
116
const appResourcesPath = projectData.getAppResourcesDirectoryPath();
117
if (!this.$androidResourcesMigrationService.hasMigrated(appResourcesPath)) {
118
this.$logger.info("Migrate old Android App_Resources structure.");
119
- await this.$androidResourcesMigrationService.migrate(appResourcesPath);
+ try {
120
+ await this.$androidResourcesMigrationService.migrate(appResourcesPath);
121
+ } catch (error) {
122
+ this.$logger.warn("Migrate old Android App_Resources structure failed: ", error.message);
123
+ }
124
}
125
126
0 commit comments