.gitignore raw
1 # Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files
2
3 # dependencies
4 node_modules/
5
6 # IDE
7 .idea/
8
9 # Expo
10 .expo/
11 dist/
12 web-build/
13 expo-env.d.ts
14
15 # Native
16 .kotlin/
17 *.orig.*
18 *.jks
19 *.p8
20 *.p12
21 *.key
22 *.mobileprovision
23
24 # Metro
25 .metro-health-check*
26
27 # debug
28 npm-debug.*
29 yarn-debug.*
30 yarn-error.*
31
32 # macOS
33 .DS_Store
34 *.pem
35
36 # local env files
37 .env*.local
38
39 # typescript
40 *.tsbuildinfo
41
42 app-example
43
44 # built APKs
45 /dist
46
47 # generated native folders
48 /ios
49 /android
50
51 # local module build outputs
52 modules/*/android/build/
53 modules/*/android/.gradle/
54 zapstore.env
55 *.p12
56