我正在尝试在 0.60 上迁移我的应用程序,但它一直卡在 jetify 进程中。
基本上,在这一行之后:
info 运行 jetifier 将库迁移到 AndroidX。您可以使用“--no-jetifier”标志禁用它。
它只是卡住了,什么也没做。我需要 jetifier 用于 react-native-firebase 和其他一些本地库。有什么建议么?
更新
似乎问题出在符号链接中。我正在使用勒纳。
我正在尝试在 0.60 上迁移我的应用程序,但它一直卡在 jetify 进程中。
基本上,在这一行之后:
info 运行 jetifier 将库迁移到 AndroidX。您可以使用“--no-jetifier”标志禁用它。
它只是卡住了,什么也没做。我需要 jetifier 用于 react-native-firebase 和其他一些本地库。有什么建议么?
更新
似乎问题出在符号链接中。我正在使用勒纳。
最后我所做的是重写一个jetify,指定我需要jetify的模块。
我的jetify index.js:
const {fork} = require('child_process');
const {join} = require('path');
const {getClassesMapping, readDir, chunk} = require('./src/utils');
const cpus = require('os').cpus().length;
const arg = process.argv.slice(2)[0];
const mode = arg && (arg === 'reverse' || arg === '-r') ? 'reverse' : 'forward';
const SEARCH_DIRS = [
........modules here
];
const classesMapping = getClassesMapping();
for (const SEARCH_DIR of SEARCH_DIRS) {
const files = readDir(SEARCH_DIR);
console.log(
`Jetifier found ${
files.length
} file(s) to ${mode}-jetify. Using ${cpus} workers...`,
);
for (const filesChunk of chunk(files, cpus)) {
const worker = fork(join(__dirname, 'src', 'worker.js'));
worker.send({filesChunk, classesMapping, mode});
}
}
在postinstall
package.json 中:
"postinstall": "cp ./jetify.js ./node_modules/jetifier/index.js"
还有一种情况是npx react-native run-android
卡在喷射状态
如果你运行npm run android
它,它也会启动Metro 服务器,
但是,要重新运行npm run android
,您需要关闭 Metro 命令窗口并允许npm run android
启动新的 Metro 服务器