我正在开发一个新的Phonegap 3应用程序。我发现开发过程非常缓慢。每次我想测试我的应用程序中的更改时,我都必须在控制台中运行:
phonegap运行android
此命令大约需要30秒才能运行!如何改善测试每次变化的时间?
答案 0 :(得分:1)
如果您正在使用ecllipse开发Android,您可以使用Android手机,使用USB电缆将其与开发机器连接,并从here安装必要的驱动程序 。 驱动程序主要用于mac和linux中的windows,通常不需要。设置完成后,只需点击你的ide中运行即可。
答案 1 :(得分:0)
如果您有大量文件(带有演示的库,非缩小文件等),在应用上安装可能需要很长时间。
我创建了这个钩子(添加到before_prepare),它只复制必要的文件(在我的项目中的“requirements.json”中指定)。
您需要运行cd hooks/before_prepare && npm install ncp
来安装依赖项。
<强>钩/ before_prepare / 010copy_assets.js 强>
#!/usr/bin/env node
console.log("=== Running copy required assets hook ===");
var fs = require('fs'),
path = require('path');
var mkdirSync = function(path) {
try {
fs.mkdirSync(path);
} catch (e) {
if (e.code != 'EEXIST') throw e;
}
}
var mkdirpSync = function(dirpath) {
var parts = dirpath.split(path.sep);
for (var i = 1; i <= parts.length; i++) {
mkdirSync(path.join.apply(null, parts.slice(0, i)));
}
}
try {
var ncp = require('ncp').ncp
var requirements = require('./../../myproject/requirements.json');
ncp.limit = 200;
ncp.stopOnErr = true;
requirements.forEach(function(requirement) {
var source = './myproject/' + requirement;
var destination = './www/' + requirement;
var folders = destination.split('/');
folders.pop();
mkdirpSync(path.normalize(folders.join('/')));
ncp(source, destination, function(err) {
if (err) {
console.log('====== Error! Did not copy asset from ' + source + ' to ' + destination + ' ======');
console.error(err);
process.exit(1001);
} else
console.log('====== Copied asset from ' + source + ' to ' + destination + ' ======');
});
});
} catch (e) {
console.error(e);
console.error(e.stack);
process.exit(1000);
}
example requirements.json
[
"js",
"css",
"img",
"index.html"
]
请注意,您可以将内容直接移动到构建www目录(内部平台),但它们在ios和android下具有不同的路径