We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbc597b commit 79c494fCopy full SHA for 79c494f
1 file changed
packages/cli-config-apple/src/config/findAllPodfilePaths.ts
@@ -9,7 +9,9 @@ import glob from 'fast-glob';
9
import {unixifyPaths} from '@react-native-community/cli-tools';
10
11
// These folders will be excluded from search to speed it up
12
-const GLOB_EXCLUDE_PATTERN = ['**/@(Pods|node_modules|Carthage|vendor)/**'];
+const GLOB_EXCLUDE_PATTERN = [
13
+ '**/@(Pods|node_modules|Carthage|vendor|android)/**',
14
+];
15
16
export default function findAllPodfilePaths(cwd: string) {
17
return glob.sync('**/Podfile', {
0 commit comments