We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fded782 commit 04d2053Copy full SHA for 04d2053
lib/get-config.js
@@ -3,7 +3,7 @@ const path = require('path');
3
4
module.exports = ({ rootPath, rnConfig }) => {
5
const iosPath = path.resolve(rootPath, rnConfig?.project?.ios?.sourceDir ?? 'ios');
6
- const androidPath = path.resolve(rootPath, rnConfig?.project?.android?.sourceDir ??'android');
+ const androidPath = path.resolve(rootPath, rnConfig?.project?.android?.sourceDir ?? 'android');
7
8
const iosExists = fs.existsSync(iosPath);
9
const xcodeprojName = iosExists
0 commit comments