diff --git a/lib/services/android-project-service.ts b/lib/services/android-project-service.ts index 4939d6f6d4..75e5e5af46 100644 --- a/lib/services/android-project-service.ts +++ b/lib/services/android-project-service.ts @@ -284,13 +284,7 @@ export class AndroidProjectService extends projectServiceBaseLib.PlatformProject } public processConfigurationFilesFromAppResources(): IFuture { - return (() => { - // Process androidManifest.xml from App_Resources - let manifestFilePath = path.join(this.$projectData.appResourcesDirectoryPath, this.platformData.normalizedPlatformName, this.platformData.configurationFileName); - if (this.$fs.exists(manifestFilePath).wait()) { - this.processResourcesFromPlugin("NativescriptAppResources", path.dirname(manifestFilePath)).wait(); - } - }).future()(); + return Future.fromResult(); } private processResourcesFromPlugin(pluginName: string, pluginPlatformsFolderPath: string): IFuture {