Member 11405465 Ответов: 1

Visual studio 2013 - проблема плагина файла cordova


Hi I'm working on Ionic framework for mobile app development in Visual studio 2013.
In config.xml I could not able to add cordova file plugin, it shows couldn't able to download plugin., so I manually installed the Plugin from Git repository. The version of the plugin added is 4.2.0 and I added the following lines of code for file creation


    window.resolveLocalFileSystemURL(cordova.file.dataDirectory, function (dir) {
                    console.log("got main dir", dir);
                    dir.getFile("log.txt", { create: true }, function (file) {
                        console.log("got the file", file);
                        logOb = file;
                        writeLog("App started");
                    });
                });

But when I try to build the solution, it throws me "couldn't install cordova file plugin" and the build fails. So I downgraded the plugin version to 1.3.1, build succeeds, but it throws "cordova.file" as undefined. 


Что я уже пробовал:

Пожалуйста, помогите мне решить эту проблему или если бы вы могли порекомендовать мне другой метод, чтобы обойти эту проблему, это было бы здорово!

Спасибо за ответы

1 Ответов

Рейтинг:
2

Maciej Los

Начните с этого урока: Создание приложений Apache Cordova с помощью Visual Studio на канале 9[^]

Некоторые подробности о том, как установить плагин Cordova, вы найдете здесь: Установка плагинов Cordova в Visual Studio 2013 - Stack Overflow[^]