You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
removed ensureConfigurationFileInAppResources both from android and ios
enureConfigurationFileInAppResources functionality is obsolite from 1.7, what it did was make sure we have a configuration file AndroidManifest.xml or Info.plist in the app/App_Resources/(Android/iOS)/ folders respectively. We also carried a configuration file inside the CLI installation folder which also need to be deleted"
this.$logger.trace(`Could not extract ${this.platformData.configurationFileName} from default template. Reverting the change of your app/App_Resources/${this.platformData.configurationFileName}.`);
this.$logger.trace(`${originalAndroidManifestFilePath} is missing. Upgrading the source of the project with one from the new project template. Copy ${templateAndroidManifest} to ${originalAndroidManifestFilePath}`);
this.$logger.trace(`${originalAndroidManifestFilePath} is missing but the template ${templateAndroidManifest} is missing too, can not upgrade ${this.platformData.configurationFileName}.`);
602
-
returnfalse;
603
-
}
604
-
605
-
if(alreadyHasAndroidManifest){
606
-
this.$logger.warn(`Your ${this.platformData.configurationFileName} in app/App_Resources/Android will be replaced by the default one from hello-world template.`);
607
-
this.$logger.printMarkdown(`The original file will be moved to \`${this.getConfigurationFileBackupName(originalAndroidManifestFilePath).wait()}\`. Merge it **manually** with the new \`${this.platformData.configurationFileName}\` in your app/App_Resources/Android.`);
this.$logger.trace("Info.plist: app/App_Resources/iOS/Info.plist is missing. Upgrading the source of the project with one from the new project template. Copy "+templateInfoPlist+" to "+infoPlistPath);
this.$logger.trace("Info.plist: app/App_Resources/iOS/Info.plist is missing but the template "+templateInfoPlist+" is missing too, can not upgrade Info.plist.");
0 commit comments