Files: a1788ad09ef99d36092e9cf6c15cf3e33e20da34 / .gitignore
1305 bytesRaw
1 | # OSX |
2 | # |
3 | .DS_Store |
4 | .history/ |
5 | # Xcode |
6 | # |
7 | build/ |
8 | *.pbxuser |
9 | !default.pbxuser |
10 | *.mode1v3 |
11 | !default.mode1v3 |
12 | *.mode2v3 |
13 | !default.mode2v3 |
14 | *.perspectivev3 |
15 | !default.perspectivev3 |
16 | xcuserdata |
17 | *.xccheckout |
18 | *.moved-aside |
19 | DerivedData |
20 | *.hmap |
21 | *.ipa |
22 | *.xcuserstate |
23 | |
24 | # Android/IntelliJ |
25 | # |
26 | build/ |
27 | .idea |
28 | .gradle |
29 | local.properties |
30 | *.iml |
31 | android/.project |
32 | android/app/.classpath |
33 | android/app/.project |
34 | android/app/bin |
35 | android/captures |
36 | android/app/.settings/org.eclipse.buildship.core.prefs |
37 | android/.settings/org.eclipse.buildship.core.prefs |
38 | # This should always be generated, not committed, specially for F-Droid builds: |
39 | android/app/src/main/jniLibs/**/libsodium.so |
40 | |
41 | # Visual Studio Code |
42 | # |
43 | .vscode |
44 | |
45 | # node.js |
46 | # |
47 | node_modules/ |
48 | npm-debug.log |
49 | yarn-error.log |
50 | |
51 | # BUCK |
52 | buck-out/ |
53 | \.buckd/ |
54 | *.keystore |
55 | !debug.keystore |
56 | |
57 | # fastlane |
58 | # |
59 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the |
60 | # screenshots whenever they are needed. |
61 | # For more information about the recommended setup visit: |
62 | # https://docs.fastlane.tools/best-practices/source-control/ |
63 | |
64 | */fastlane/report.xml |
65 | */fastlane/Preview.html |
66 | */fastlane/screenshots |
67 | |
68 | # Generated Code |
69 | # |
70 | /lib/ |
71 | /nodejs-assets |
72 | /desktop/nodejs-project |
73 | /desktop/dist |
74 | /android/app/src/main/res/raw/rnnodebundle |
75 | *.jsbundle |
76 | |
77 | # CocoaPods |
78 | /ios/Pods/ |
79 | |
80 | # Misc |
81 | # |
82 | /gitignored/ |
83 |
Built with git-ssb-web